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

body.Ares {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: auto;
    font-family: 'MedievalSharp', cursive;
    background: #0a0a0a;
}

/* Arkaplan Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4);
}

/* Ana Sayfa */
.flex-body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 20px 0;
}

/* Sosyal Medya Container */
.socials {
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

/* Profil Container - ORTALANDI */
.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(49, 0, 113, 0.8), rgba(72, 40, 105, 0.6));
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(72, 40, 105, 0.4);
    backdrop-filter: blur(10px);
    animation: float 4.5s ease-in-out infinite;
    margin-bottom: 40px;
    text-align: center;
}

/* Profil Resmi */
img.Ares {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9370db;
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.6);
    transition: transform 0.3s ease;
}

img.Ares:hover {
    transform: scale(1.05);
}

/* Kullanıcı Adı - FOTOĞRAFIN ALTINDA */
.username {
    font-size: 2.5em;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Söz Kutusu - ONLY ARES YAZISININ ALTINDA */
.quote-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #9370db;
    box-shadow: 0 0 15px rgba(147, 112, 219, 0.6);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 5px auto 0 auto;
    animation: glow 2s ease-in-out infinite alternate;
}

.quote-text {
    font-size: 1.2em;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-style: italic;
    line-height: 1.3;
    transition: opacity 0.5s ease;
}

/* Sosyal Medya Linkleri */
.link {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    animation: float 4.5s ease-in-out infinite;
}

.link-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4b0082;
    box-shadow: 0 0 15px rgba(49, 0, 113, 0.6);
    transition: all 0.3s ease;
}

.link-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.8);
    border-color: #9370db;
}

/* Paketler Bölümü */
.packages-section {
    width: 100%;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.packages-header {
    text-align: center;
    margin-bottom: 40px;
}

.packages-header h1 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ownerdes {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 40px;
}

.highlight.unfg {
    background: linear-gradient(45deg, #9370db, #4b0082);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Paket Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Paket Kartları */
.package-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(50, 50, 50, 0.8));
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.package-card.basic {
    border-top: 4px solid #4b0082;
}

.package-card.standard {
    border-top: 4px solid #9370db;
}

.package-card.premium {
    border-top: 4px solid #ffd700;
}

.package-card.revision {
    border-top: 4px solid #ff6b6b;
}

/* Popüler Badge */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #9370db, #4b0082);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Paket Header */
.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.packinfo strong {
    font-size: 1.5em;
    color: #fff;
}

.packabout {
    color: #ccc;
    font-size: 0.9em;
    margin-top: 5px;
}

.lilinfo .price_ {
    font-size: 1.8em;
    color: #9370db;
    font-weight: bold;
}

.price_usd {
    font-size: 0.6em;
    color: #ccc;
}

/* Paket Özellikleri */
.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.feature-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-desc {
    color: #ccc;
    font-style: italic;
    font-size: 0.9em;
}

/* Teslimat Bilgisi */
.delivery-info {
    color: #ccc;
    margin: 15px 0;
    font-size: 0.9em;
}

.delivery-time {
    color: #9370db;
    font-weight: bold;
}

/* Sipariş Butonu */
.package-footer {
    margin-top: 20px;
}

.order-btn {
    display: inline-block;
    background: linear-gradient(45deg, #4b0082, #9370db);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-family: 'MedievalSharp', cursive;
}

.order-btn:hover {
    background: linear-gradient(45deg, #9370db, #4b0082);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.4);
}

/* Revizyon Kartı */
.revision-content {
    text-align: center;
    margin: 20px 0;
}

.revision-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ff6b6b;
}

.revision-text {
    color: #ccc;
    font-size: 0.9em;
}

/* 2. Sayfa Stilleri */
.flex-body-bio {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 20px 20px 20px;
}

.second-page-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    width: 95%;
    max-width: 1400px;
    height: auto;
    flex-wrap: wrap;
}

/* Bio Bölümü */
.bio {
    background: linear-gradient(135deg, rgba(49, 0, 113, 0.8), rgba(72, 40, 105, 0.6));
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(72, 40, 105, 0.4);
    backdrop-filter: blur(10px);
    animation: float 4.5s ease-in-out infinite;
    width: 30%;
    min-height: 350px;
    flex: 1;
    min-width: 300px;
}

.bio h2 {
    color: #9370db;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #9370db;
    padding-bottom: 10px;
    font-size: 1.8em;
}

.bio-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio-list li {
    text-align: center;
    margin: 12px 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 112, 219, 0.3);
}

.bio-list li:hover {
    background: rgba(72, 40, 105, 0.5);
    transform: translateX(5px);
}

.dark-link {
    color: #9370db;
    text-decoration: none;
    font-weight: bold;
}

.dark-link:hover {
    color: #4b0082;
    text-decoration: underline;
}

/* Hakkımda Bölümü */
.about-section {
    background: linear-gradient(135deg, rgba(165, 42, 42, 0.8), rgba(139, 0, 0, 0.6));
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(165, 42, 42, 0.4);
    backdrop-filter: blur(10px);
    animation: float 4.5s ease-in-out infinite;
    width: 40%;
    min-height: 350px;
    color: #fff;
    flex: 2;
    min-width: 300px;
}

.about-section h2 {
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
    font-size: 1.8em;
}

.about-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.about-section strong {
    color: #ff6b6b;
}

/* Referanslar Bölümü */
.references-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(106, 90, 205, 0.6));
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.4);
    backdrop-filter: blur(10px);
    animation: float 4.5s ease-in-out infinite;
    width: 30%;
    min-height: 350px;
    flex: 1;
    min-width: 300px;
}

.references-section h2 {
    color: #9370db;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #9370db;
    padding-bottom: 10px;
    font-size: 1.8em;
}

.server-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.server-link {
    display: block;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 112, 219, 0.3);
    text-align: center;
}

.server-link:hover {
    background: rgba(72, 40, 105, 0.5);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(147, 112, 219, 0.6);
}

.server-name {
    color: #fff;
    font-weight: bold;
}

/* Navigasyon Menüsü */
.navigation-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.nav-btn {
    background: linear-gradient(45deg, #4b0082, #9370db);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'MedievalSharp', cursive;
    font-size: 0.9em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: linear-gradient(45deg, #9370db, #4b0082);
    transform: scale(1.05);
}

/* Made By Ares */
.made-by {
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: white;
    font-family: "MedievalSharp", serif;
    font-size: 1.2rem;
    background: linear-gradient(45deg, rgba(49, 0, 113, 0.8), rgba(72, 40, 105, 0.6));
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(72, 40, 105, 0.45);
    z-index: 101;
    backdrop-filter: blur(10px);
}

.made-by:hover {
    background: linear-gradient(45deg, rgba(72, 40, 105, 0.8), rgba(49, 0, 113, 0.6));
    color: #9370db;
}

/* Credits */
.credits {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: white;
    font-family: "MedievalSharp", serif;
    font-size: 1.2rem;
    text-decoration: none;
    background: linear-gradient(45deg, rgba(49, 0, 113, 0.8), rgba(72, 40, 105, 0.6));
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(72, 40, 105, 0.45);
    z-index: 101;
    backdrop-filter: blur(10px);
}

.credits:hover {
    background: linear-gradient(45deg, rgba(72, 40, 105, 0.8), rgba(49, 0, 113, 0.6));
    color: #9370db;
}

/* Müzik Çalar */
.musicplayer {
    position: fixed;
    bottom: 7%;
    right: -2%;
    width: max-content;
    border-radius: 100px;
    box-shadow: 0px 0px 15px rgba(72, 40, 105, 0.45);
    transform: rotate(-90deg);
    transform-origin: center;
    background: linear-gradient(45deg, rgba(49, 0, 113, 0.8), rgba(72, 40, 105, 0.6));
    backdrop-filter: blur(10px);
}

/* Ses Kontrolü */
#custom-volume-slider-Ares {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

#custom-volume-slider-Ares::-webkit-slider-runnable-track {
    height: 10px;
    background: linear-gradient(to right, rgba(72, 40, 105, 0.8), rgba(147, 112, 219, 0.5));
    border-radius: 5px;
}

#custom-volume-slider-Ares::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #4b0082;
    border: 2px solid hsl(260, 60%, 55%);
    border-radius: 50%;
    margin-top: -5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#custom-volume-slider-Ares::-webkit-slider-thumb:hover {
    transform: scale(1.5);
    box-shadow: 0 0 12px rgba(72, 40, 105, 0.45);
}

/* Animasyonlar */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 8px rgba(147, 112, 219, 0.6);
    }
    to {
        box-shadow: 0 0 20px rgba(147, 112, 219, 0.9);
    }
}

@keyframes to-the-front {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(100%);
        opacity: 1;
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .center {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }
    
    .username {
        font-size: 2em;
        padding-right: 0;
    }
    
    .quote-box {
        padding: 10px 15px;
        margin: 3px auto 0 auto;
    }
    
    .quote-text {
        font-size: 1em;
    }
    
    img.Ares {
        width: 100px;
        height: 100px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .packages-header h1 {
        font-size: 2em;
    }
    
    .second-page-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .bio, .about-section, .references-section {
        width: 100%;
    }
    
    .navigation-menu {
        top: 10px;
        right: 10px;
        flex-direction: column;
    }
    
    .nav-btn {
        padding: 8px 15px;
        font-size: 0.8em;
    }
    
    .made-by, .credits {
        font-size: 1rem;
        padding: 5px 10px;
    }
    
    .flex-body {
        padding: 10px;
    }
    
    .flex-body-bio {
        padding-top: 100px;
    }
}

/* Utilities */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.añadir-texto {
    display: none;
}
/* Müzik Başlatma Butonu Stili */
.music-start-btn {
    position: fixed;
    bottom: 60px;
    left: 10px;
    z-index: 1000;
    background: linear-gradient(45deg, #4b0082, #9370db);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'MedievalSharp', cursive;
    font-size: 0.9em;
    box-shadow: 0 0 15px rgba(72, 40, 105, 0.45);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.music-start-btn:hover {
    background: linear-gradient(45deg, #9370db, #4b0082);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .music-start-btn {
        bottom: 50px;
        left: 5px;
        padding: 8px 12px;
        font-size: 0.8em;
    }
}
