/* Temel Değişkenler ve Reset */
:root {
    --musyorum-primary: #229c0a;
    --musyorum-primary-dark: rgb(6, 194, 133);
    --musyorum-dark-bg:  #000000;
    --musyorum-card-bg: rgba(16, 28, 40, 0.8);
    --musyorum-text: #ffffff;
    --musyorum-text-light: rgba(255, 255, 255, 0.8);
    --musyorum-accent: #229c0a;
    --musyorum-border: rgba(34, 156, 10, 0.2);
    --musyorum-max-width: 90%;
    --musyorum-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: black!important;
    color: var(--musyorum-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Hareketli Arka Plan */
/*.musyorum-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    overflow: hidden;
    background: linear-gradient(135deg, #081b29 0%,  #000000 100%);
}*/

.musyorum-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(34, 156, 10, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out; /* 15s yerine 8s olarak değiştirildi */
}

.musyorum-particle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.musyorum-particle:nth-child(2) {
    width: 500px;
    height: 500px;
    top: 20%;
    right: -150px;
    animation-delay: -1s;
}

.musyorum-particle:nth-child(3) {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: 10%;
    animation-delay: -2s;
}

.musyorum-particle:nth-child(4) {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    animation-delay: -3s;
}

.musyorum-particle:nth-child(5) {
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: 20%;
    animation-delay: -4s;
}

.musyorum-particle:nth-child(6) {
    width: 280px;
    height: 280px;
    top: 60%;
    right: 40%;
    animation-delay: -5s;
}

.musyorum-particle:nth-child(7) {
    width: 380px;
    height: 380px;
    top: 10%;
    left: 40%;
    animation-delay: -6s;
}

.musyorum-particle:nth-child(8) {
    width: 320px;
    height: 320px;
    bottom: 30%;
    right: 5%;
    animation-delay: -7s;
}

/* Sadece masaüstünde particle'lar görünsün - tablet ve mobile'da gizle */
@media (max-width: 1024px) {
    .musyorum-particle {
        display: none !important;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-40px) translateX(30px) scale(1.05); /* Hareket miktarını da arttırdım */
        opacity: 0.7;
    }
    50% {
        transform: translateY(0) translateX(60px) scale(1); /* Daha fazla yatay hareket */
        opacity: 0.5;
    }
    75% {
        transform: translateY(40px) translateX(30px) scale(0.95); /* Hareket miktarını arttırdım */
        opacity: 0.7;
    }
}

/* Ana Container */
.musyorum-main {
    /*max-width: var(--musyorum-max-width);
    margin: 0 auto;
    padding: 40px 20px;*/
    position: relative;
    z-index: 1;
}

/* Hero Bölümü */
.musyorum-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.musyorum-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.musyorum-crown-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(to right, rgb(255, 255, 255), #229c0a) text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: rgba(34, 156, 10, 0.25) 0px 0px 30px;
}

.musyorum-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(to right, rgb(255, 255, 255), #229c0a) text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: rgba(34, 156, 10, 0.25) 0px 0px 30px;
}

.musyorum-hero-description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #229c0a;
    text-align: center;
    font-weight: 400;
}

.musyorum-hero-description i {
    color: var(--musyorum-primary);
}

/* Testimonials Grid */
.musyorum-testimonials {
    margin-bottom: 80px;
    padding: 0px 40px;
        padding-top: 60px;
}

.musyorum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: var(--musyorum-max-width);
    margin: 0 auto;
}


/* Testimonial Card */
.musyorum-card {
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--musyorum-border);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--musyorum-shadow);
}

.musyorum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.musyorum-quote-icon {
    color: var(--musyorum-primary);
    font-size: 2rem;
    top: 20px;
    right: 20px;
    opacity: 0.2;
}

.musyorum-testimonial-content {
    margin-bottom: 25px;
    margin-top: -10px;
}

.musyorum-testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 1.5rem 0px;
    font-size: 1rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px;
}

.musyorum-rating {
    display: flex;
    gap: 5px;
}

.musyorum-rating i {
    color: #229c0a;
    filter: drop-shadow(0 0 5px rgba(34, 156, 10, 0.25));
}

/* Author Info */
.musyorum-testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--musyorum-border);
    padding-top: 20px;
    position: relative; /* Bu satır eklendi - ::before için referans noktası oluşturur */
}

.musyorum-testimonial-author::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0; /* Genişliği başlangıçta 0 olarak ayarlayın */
    height: 1px;
    background: #229c0a;
    animation: expandLine 2s ease-out forwards;
}

/* Eksik animasyon tanımı eklendi */
@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 50%;
    }
}



.musyorum-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--musyorum-primary);
    margin-right: 15px;
    flex-shrink: 0;
    border:none;
}

.musyorum-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.musyorum-author-info {
    flex: 1;
}

.musyorum-author-name {
    display: flex;
    align-items: center;
}

.musyorum-author-name i {
    color: var(--musyorum-primary);
    margin-right: 8px;
    font-size: 0.9rem;
}

.musyorum-author-name h3 {
    color: #229c0a;
    font-size: 1.2rem;
    font-weight: 800;
    gap: 0.5rem;
}

.musyorum-author-position,
.musyorum-testimonial-date {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--musyorum-text-light);
}

.musyorum-author-position i,
.musyorum-testimonial-date i {
    color: var(--musyorum-primary);
    margin-right: 8px;
    font-size: 0.8rem;
}




.musyorum-cta, .musyorum-grid{

    max-width: 1500px;
    margin: 0 auto;
}

/* CTA Section */
.musyorum-cta {
    background: linear-gradient(135deg, rgba(8, 252, 172, 0.2) 0%, rgba(6, 194, 133, 0.1) 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--musyorum-border);
    box-shadow: var(--musyorum-shadow);
}

.musyorum-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.musyorum-cta h2 {
    font-size: 2rem;
    color: var(--musyorum-primary);
}

.musyorum-cta p {
    color: var(--musyorum-text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.musyorum-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.musyorum-btn-primary,
.musyorum-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.musyorum-btn-primary {
    background-color: var(--musyorum-primary);
    color: var(--musyorum-dark-bg);
}

.musyorum-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--musyorum-primary);
    color: var(--musyorum-primary);
}

.musyorum-btn-primary:hover {
    background-color: var(--musyorum-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.musyorum-btn-secondary:hover {
    background-color: rgba(8, 252, 172, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.musyorum-btn-primary i,
.musyorum-btn-secondary i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .musyorum-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .musyorum-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .musyorum-grid {
        grid-template-columns: 1fr;
    }
    
    .musyorum-hero h1 {
        font-size: 2.5rem;
    }
    
    .musyorum-cta {
        padding: 40px 20px;
                margin: 0px 20px;
    }
    
    .musyorum-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .musyorum-hero h1 {
        font-size: 4rem;
        line-height: 60px;
    }
    .musyorum-crown-icon{
        font-size: 4rem;
    }
    
    .musyorum-hero-description {
        font-size: 1rem;
    }
    
    .musyorum-card {
        padding: 20px;
    }
    
    .musyorum-testimonial-content p {
        min-height: auto;
    }
    
    .musyorum-author-image {
        width: 50px;
        height: 50px;
    }
    
    .musyorum-btn-primary,
    .musyorum-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .musyorum-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}








































/* Unused hero-references section CSS removed for cleaner code */
