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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
    position: relative;
}

.main-container {
    position: relative;
    z-index: 2;
}

.icon-container {
    animation: bounce 2s ease-in-out infinite;
}

.icon-container i {
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Başlıklar */
.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #f0f0f0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-container {
    max-width: 500px;
    margin: 0 auto;
}

.progress {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: width 0.5s ease;
}

.progress-bar-animated {
    animation: 1s linear progress-bar-stripes !important;
}

#progressText {
    line-height: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.25);
}

.info-card i {
    color: #ffffff;
}

.info-card h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: #f0f0f0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Sosyal Medya */
.social-links {
    animation: fadeIn 2s ease-out;
    pointer-events: auto;
}

.social-links p {
    color: #ffffff;
    font-weight: 400;
}

.social-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 9999;
}

.social-icon:hover {
    background: #ffffff;
    color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Footer */
.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-text p {
    margin-bottom: 0;
}

/* Partiküller Arka Plan */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .icon-container i {
        font-size: 3.5rem !important;
    }

    .info-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .progress {
        height: 25px !important;
    }

    .progress-bar {
        font-size: 0.9rem;
    }

    #progressText {
        line-height: 25px;
    }
}