
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary: gold;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --dark: gold;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gradient: linear-gradient(135deg, #323232, #2a2926b9);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(/pluto/images/index/IMG_20250429_092836_344-pica_2.png) fixed  no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--dark);
    min-height: 100vh;
}


        .line{
  border-bottom:2px solid goldenrod;
    
}
.prz{
  border-bottom:2px solid rgb(255, 255, 255);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* section_header */
.section_header {
    background: var(--gradient);
    color: white;
    padding: 150px 0 120px;
    clip-path: ellipse(100% 100% at 50% 0%);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.section_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInDown 1s ease;
    color: gold;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
    border: 2px solid white;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease;
}

.btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: rgba(12, 12, 12, 0.788);
    backdrop-filter: blur(5px);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.intro-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ///////////////////////////sectin_system////////////////////////////////////////////////////////////// */
.section_system{
    margin: 20px 0;
    background: rgba(12, 12, 12, 0.788);
    backdrop-filter: blur(5px);
    padding: 20px;
}

.system {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.system h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.system h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.system p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 20px;
    color: white;
}

.commission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.commission-card {
    background: rgba(0, 0, 0, 0.622);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.commission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.commission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
}

.commission-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.commission-percentage {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.commission-percentage::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.commission-desc {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 20px;
    color: white;
}

/* Levels Section */
.levels-section {
    padding: 60px 0;
    background: rgba(12, 12, 12, 0.679);
    backdrop-filter: blur(5px);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.level-reward-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reward-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.reward-text {
    flex: 1;
    text-align: right;
}

.read-more-btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 100px;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Colors for different levels */
.move_btn { background-color: rgb(255, 170, 0); }
.move_btn1 { background-color: rgb(255, 170, 0); }
.move_btn2 { background-color: rgb(255, 170, 0); }
.move_btn3 { background-color: rgb(255, 170, 0); }
.move_btn4 { background-color: rgb(255, 170, 0);}
.move_btn5 { background-color:rgb(255, 170, 0); }
.move_btn6 { background-color: rgb(255, 170, 0); }

.levels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.level-card {
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.level-1{
    background: linear-gradient(rgba(0, 0, 0, 0.500),rgba(0, 0, 0, 0.500)),url(/pluto/images/prize/DeWatermark.ai_1746333233454.png)no-repeat;
    background-position: center;
    background-size: cover;
}

.level-2{
    background: linear-gradient(rgba(0, 0, 0, 0.500),rgba(0, 0, 0, 0.500)),url(/pluto/images/prize/pexels-john-guccione-www-advergroup-com-1874301-3483098.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.level-3{
    background:linear-gradient(rgba(0, 0, 0, 0.500),rgba(0, 0, 0, 0.500)),url(/pluto/images/prize/smartphone-7169689_1280.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.level-4{
    background: linear-gradient(rgba(0, 0, 0, 0.500),rgba(0, 0, 0, 0.500)),url(/pluto/images/prize/gold-296115_1280.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.level-5{
    background: linear-gradient(rgba(0, 0, 0, 0.500),rgba(0, 0, 0, 0.500)),url(/pluto/images/prize/kaba-2227171_1280.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.level-6{
    background: linear-gradient(rgba(0, 0, 0, 0.500),rgba(0, 0, 0, 0.500)),url(/pluto/images/prize/wrist-watch-7957073_1280.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.level-7{
    background: linear-gradient(rgba(0, 0, 0, 0.500),rgba(0, 0, 0, 0.500)),url(/pluto/images/prize/pexels-mo-ba-2406541-4101746.jpg)no-repeat;
    background-position: center;
    background-size: cover;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.level-1::before { background:  rgb(255, 170, 0); }
.level-2::before { background:  rgb(255, 170, 0);}
.level-3::before { background:  rgb(255, 170, 0);}
.level-4::before { background:  rgb(255, 170, 0);}
.level-5::before { background:  rgb(255, 170, 0); }
.level-6::before { background:  rgb(255, 170, 0); }
.level-7::before { background:  rgb(255, 170, 0); }

.level-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.level-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 15px;
}

.level-title {
    font-size: 1.5rem;
    color: var(--dark);
}

.level-arabic {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.level-details {
    margin-top: 20px;
}

.level-goal, .level-reward {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.level-icon {
    width: 30px;
    height: 30px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    flex-shrink: 0;
}

/* Funding Section */
.funding-section {
    padding: 80px 0;
    background: rgba(12, 12, 12, 0.788);
    backdrop-filter: blur(5px);
    margin: 50px 0;
}

.funding-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.funding-table th, .funding-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.funding-table th {
    background: rgba(39, 38, 38, 0.37);
    color: white;
    font-weight: 500;
}

.funding-table tr:nth-child(even) {
    background: rgba(12, 12, 12, 0.788);
    backdrop-filter: blur(5px);
}

.funding-table tr:hover {
    background: #535353;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    margin: 20px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: gold;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid white;
}

.btn:hover {
    background: transparent;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .levels-container {
        grid-template-columns: 1fr;
    }
    
    .funding-table {
        display: block;
        overflow-x: auto;
    }
    
    .reward-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .read-more-btn {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .level-card {
        padding: 20px;
    }
    
    .level-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .level-number {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .read-more-btn {
        min-width: 80px;
        padding: 5px 8px;
        font-size: 0.8rem;
    }
}





.red{
    background-color: red;
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: 2px gold solid;
    margin-top: 10px;
}