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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #004d40 0%, #00796b 50%, #4caf50 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid white;
}

.profile h1 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.profile p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 90%;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
}

.link-item i {
    font-size: 24px;
    justify-self: start;
}

.link-item span {
    text-align: center;
    margin-right: 40px;
}

.link-item:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.link-item:hover i {
    transform: scale(1.2);
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

/* Sosyal medya ikon renkleri */
.fa-instagram {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fa-broadcast-tower {
    color: #E4405F;
}

.fa-facebook {
    color: #1877F2;
}

.fa-twitter {
    color: #1DA1F2;
}

.fa-youtube {
    color: #FF0000;
}

.fa-blog {
    color: #FF5722;
}

.fa-github {
    color: #333333;
}

.fa-linkedin {
    color: #0077B5;
}

.fa-envelope {
    color: #EA4335;
}

.fa-map-marker-alt {
    color: #EA4335;
    font-size: 26px !important;
}

.fa-whatsapp {
    color: #25D366;
}

.fa-telegram {
    color: #0088cc;
}

.fa-shopping-cart {
    color: #f27a1a;
}

.fa-globe {
    color: #2196F3;
} 