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

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.container::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,155,255,0.15) 0%, rgba(0,0,0,0) 50%);
    animation: rotate 15s linear infinite;
    top: -25%;
    left: -25%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.2);
    }
}

.epic-message {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

.epic-message h1 {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #009BFF, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0,155,255,0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.epic-message h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0,155,255,0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(0,155,255,0.5),
                     0 0 40px rgba(0,155,255,0.3);
    }
}

.cta-button {
    margin-top: 2rem;
}

.cta-button a {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #0066cc, #004d99);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.cta-button a:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
}

.contact-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.8);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem 0rem 2rem 2rem;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    position: relative;
    margin: 0;
    backdrop-filter: blur(10px);
    height: calc(100vh - 8rem);
    margin: 3rem auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.form-scroll-wrapper {
    height: 100%;
    overflow-y: auto;
    padding-right: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: #009BFF rgba(255, 255, 255, 0.1);
}

.form-scroll-wrapper::-webkit-scrollbar {
    width: 8px;
}

.form-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0.5rem 0;
}

.form-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #009BFF;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.form-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #0088cc;
}

.close-form {
    position: absolute;
    top: 0rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-form:hover {
    color: #0066cc;
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.required {
    color: #0066cc;
    font-size: 0.9rem;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #0066cc;
    background-color: rgba(0, 102, 204, 0.1);
}

.error-message {
    color: #0066cc;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group input.error + .error-message,
.form-group select.error + .error-message,
.form-group textarea.error + .error-message {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.form-group label .optional {
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9em;
    color: #0066cc;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.char-counter {
    text-align: right;
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.disclaimer {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #0066cc, #004d99);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

@media screen and (max-width: 768px) {
    .form-grid,
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1rem;
    }
}

.logo {
    max-width: 320px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(0,155,255,0.2));
    opacity: 0.9;
    transition: all 0.5s ease;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(0,155,255,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(0,155,255,0.1) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: shine 3s linear infinite;
    pointer-events: none;
}

.logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0,155,255,0.4));
    transform: scale(1.02) rotate(1deg);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes shine {
    0% {
        background-position: 200% 200%;
    }
    100% {
        background-position: -200% -200%;
    }
}

#network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #0066cc;
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.form-group select:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.social-media-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
}

.social-platform {
    width: 80px;
    min-width: 60px;
    max-width: 160px;
    font-size: 0.8rem;
    padding: 0.3rem;
    flex-shrink: 0;
}

.social-username {
    flex: 1;
    min-width: 0;
    padding: 0.5rem;
    width: 100%;
}

.add-social-btn {
    background: linear-gradient(45deg, #0066cc, #004d99);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.add-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.social-accounts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.social-account-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.social-account-item .platform {
    color: #009bff;
    font-weight: 400;
}

.social-account-item .username {
    color: #ffffff;
    font-weight: 300;
}

.social-account-item .remove-btn {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 0 0.5rem;
    font-size: 1.2rem;
    line-height: 1;
}

.social-account-item .remove-btn:hover {
    color: #ff0000;
}

/* Bildirim Stilleri */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    background: linear-gradient(45deg, #0066cc, #004d99);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
}

.notification-message {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification.hide {
    animation: slideOut 0.3s ease-in forwards;
}

.form-notice {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.3;
    font-weight: 300;
    opacity: 0.8;
}

/* Sadece mobilde geçerli olacak şekilde */
@media (max-width: 768px) {
  html, body {
    overflow: hidden !important;
    height: 100% !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    position: relative;
  }
  #network {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
  }
  .container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }
  .contact-section, .contact-form {
    width: 95vw !important;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed !important;
    z-index: 999;
  }
  .logo {
    max-width: 200px !important;
  }
  .epic-message h1 {
    font-size: 2rem !important;
    animation: none;
  }
  .epic-message h2 {
    font-size: 1.5rem !important;
  }
  .cta-button a {
    font-size: 1rem !important;
    padding: 0.8rem 1.5rem !important;
  }
  .social-media-inputs {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .social-platform, .social-username, .add-social-btn {
    width: 100% !important;
  }
  .contact-form {
    margin: auto;
  }
}

.mobile-social-inputs .social-platform,
.mobile-social-inputs .social-username,
.mobile-social-inputs .add-social-btn {
  width: 100% !important;
  min-width: unset !important;
  max-width: unset !important;
}

.underline-blue {
    text-decoration: underline;
    text-decoration-color: #009BFF;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
} 