* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(45deg, #0047AB 0%, #000000 100%);
    background-image: url('https://media-cdn.t24.com.tr/media/library/2023/08/1693230867007-yeni-proje-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 71, 171, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}

@keyframes floatBackground {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 500px 500px, -300px 300px, 200px -200px;
    }
}

@keyframes lightBeam {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.maintenance-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 153, 255, 0.4),
        rgba(0, 153, 255, 0.6),
        rgba(0, 153, 255, 0.4),
        transparent
    );
    animation: lightBeam 8s ease-in-out infinite;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #ffffff;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.contact-button {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 153, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid rgba(0, 153, 255, 0.6);
    transition: all 0.3s ease;
    margin-top: 20px;
    backdrop-filter: blur(5px);
    position: relative;
    isolation: isolate;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: linear-gradient(90deg, #0047AB, #00bfff, #0047AB);
    background-size: 200% 200%;
    animation: rotateGlow 3s linear infinite;
    z-index: -1;
}

.contact-button:hover {
    background: rgba(0, 153, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

.contact-button:hover::before {
    animation: rotateGlow 1.5s linear infinite;
}

@keyframes rotateGlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.content {
    animation: float 6s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotating-cog {
    display: block;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffffff;
    animation: rotate 3s linear infinite;
} 