body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Modern pastel turuncu tonları */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

footer {
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    margin: 0;
    font-weight: 300;
}

#intro {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#intro img.profile-photo {
    /* Removed profile photo styles */
}

#intro h1 {
    font-size: 3rem; /* Increased font size */
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff4a1a, #fe6a1b); /* Even darker pastel turuncu tonları */
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeIn 1s ease-in-out;
}

#intro h3 {
    font-size: 1.5rem; /* Increased font size */
    margin-bottom: 2rem;
}

#stats {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button {
    font-size: 1.25rem; /* Increased font size */
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #ff7e5f; /* Modern pastel turuncu */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #feb47b; /* Daha açık turuncu */
}

.button-logo {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.campus {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.campus h3 {
    margin-top: 0;
}

.campus a {
    display: inline-block;
    margin-right: 1rem;
    color: #8bc34a; /* Soft yeşil */
    text-decoration: none;
}

.campus a:hover {
    text-decoration: underline;
}

.animated-title {
    animation: fadeIn 1s ease-in-out;
}

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

.spark {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: yellow;
    border-radius: 50%;
    pointer-events: none;
    animation: spark 0.5s ease-in-out forwards;
}

@keyframes spark {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

#maintenance {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Daha az karartma */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Adjusted to ensure buttons are clickable */
    font-size: 2rem;
    text-align: center;
}

#maintenance p {
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlighted-text {
    font-size: 2rem; /* Increased font size */
}