/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(-45deg, #13212d, #1a2b3a, #0f1a24, #1e2d3b);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Profil Bölümü */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image {
    margin-bottom: 20px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: #13212d;
    padding: 10px;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-bio {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Linkler Bölümü */
.links-section {
    margin-bottom: 40px;
}

.link-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

/* Ana Link Kartları Hover Efektleri */
.link-card[data-url*="instagram"]:hover .link-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: scale(1.1);
}

.link-card[data-url*="twitter"]:hover .link-icon,
.link-card[data-url*="x.com"]:hover .link-icon {
    background: #1DA1F2;
    transform: scale(1.1);
}

.link-card[data-url*="youtube"]:hover .link-icon {
    background: #FF0000;
    transform: scale(1.1);
}

.link-card[data-url*="telegram"]:hover .link-icon {
    background: #229ED9;
    transform: scale(1.1);
}

.link-card[data-url*="pinterest"]:hover .link-icon {
    background: #E60023;
    transform: scale(1.1);
}

.link-card[data-modal="live-chat-modal"]:hover .link-icon {
    background: linear-gradient(135deg, #00C851, #007E33);
    transform: scale(1.1);
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.5rem;
    color: white;
    background-color: #13212d;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.link-content p {
    font-size: 0.9rem;
    color: #777777;
    font-weight: 400;
}

.link-arrow {
    color: #13212d;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Sosyal Medya Bölümü */
.social-section {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-bio {
        font-size: 1rem;
    }
    
    .link-card {
        padding: 16px;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .link-content h3 {
        font-size: 1.1rem;
    }
    
    .link-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .profile-image img {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 1.6rem;
    }
    
    .link-card {
        padding: 14px;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Özel Efektler */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background-color: #13212d;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.link-card:hover::before {
    opacity: 0.05;
}

/* Loading Efekti */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Güncel Giriş Titreşim Animasyonu */
.link-card[data-url*="t2m.io"] {
    animation: shake 2s infinite;
    position: relative;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Hover'da titreşimi durdur */
.link-card[data-url*="t2m.io"]:hover {
    animation: none;
    transform: translateY(-4px) scale(1.02);
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #13212d 0%, #1a2b3a 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 800px;
    max-height: 96vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: white;
}

.modal-logo {
    text-align: center;
    padding: 20px 0;
}

.contact-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background-color: #13212d;
    padding: 6px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    margin: 0 20px 20px;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #13212d;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #13212d, #1a2b3a);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-methods {
    padding: 0 20px 20px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #13212d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.contact-method h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-method p {
    color: #777777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-button {
    background: linear-gradient(135deg, #13212d, #1a2b3a);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Modal Animasyonları */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Canlı Destek Modal Stilleri */
.live-chat-content {
    padding: 20px;
    text-align: center;
}

.chat-info {
    margin-bottom: 30px;
}

.chat-info h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.chat-info p {
    color: #777777;
    font-size: 1rem;
}

.live-chat-iframe {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
    margin: 20px 0;
}

.chat-alternatives {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.chat-alternatives p {
    color: #777777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.chat-alternative-button {
    background: linear-gradient(135deg, #229ED9, #0088cc);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.chat-alternative-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3);
}

/* Canlı Destek Modal Özel Stilleri */
#live-chat-modal .modal-content {
    max-width: 1000px;
    width: 98%;
    margin: 1% auto;
    max-height: 98vh;
}

#live-chat-modal .modal-header {
    padding: 10px 20px;
    border-bottom: none;
}

#live-chat-modal .live-chat-content {
    padding: 0;
}

/* Ana Sayfa Comm100 GIF Alanı */
.main-gif-area {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.main-gif {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.main-gif:hover {
    transform: scale(1.02);
}

#live-chat-modal .live-chat-iframe {
    height: 85vh;
    min-height: 800px;
    margin: 0;
    border-radius: 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    #live-chat-modal .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 96vh;
    }
    
    #live-chat-modal .live-chat-iframe {
        height: 70vh;
        min-height: 500px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .contact-form {
        margin: 0 15px 15px;
        padding: 20px;
    }
    
    .live-chat-content {
        padding: 15px;
    }
}

/* Özel Sosyal Medya Renkleri - Ana Link Kartları */
.link-card[data-url*="instagram"] .link-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.link-card[data-url*="twitter"] .link-icon,
.link-card[data-url*="x.com"] .link-icon {
    background: #1DA1F2;
}

.link-card[data-url*="youtube"] .link-icon {
    background: #FF0000;
}

.link-card[data-url*="telegram"] .link-icon {
    background: #229ED9;
}

.link-card[data-url*="pinterest"] .link-icon {
    background: #E60023;
}

.link-card[data-modal="live-chat-modal"] .link-icon {
    background: linear-gradient(135deg, #00C851, #007E33);
}

/* Alt Sosyal Medya İkonları Renkleri */
.social-icon[href*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon[href*="twitter"],
.social-icon[href*="x.com"] {
    background: #1DA1F2;
}

.social-icon[href*="youtube"] {
    background: #FF0000;
}

.social-icon[href*="telegram"] {
    background: #229ED9;
}

.social-icon[href*="pinterest"] {
    background: #E60023;
}

/* Hover Efektleri */
.social-icon[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px) scale(1.1);
}

.social-icon[href*="twitter"]:hover,
.social-icon[href*="x.com"]:hover {
    background: #1DA1F2;
    transform: translateY(-3px) scale(1.1);
}

.social-icon[href*="youtube"]:hover {
    background: #FF0000;
    transform: translateY(-3px) scale(1.1);
}

.social-icon[href*="telegram"]:hover {
    background: #229ED9;
    transform: translateY(-3px) scale(1.1);
}

.social-icon[href*="pinterest"]:hover {
    background: #E60023;
    transform: translateY(-3px) scale(1.1);
}

.social-icon[href*="linkedin"]:hover {
    background: #0077B5;
    transform: translateY(-3px) scale(1.1);
} 