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

html {
    font-size: 16px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 4px;
    animation: pulse 2s infinite;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.description {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.2s; }
.link-item:nth-child(3) { animation-delay: 0.3s; }
.link-item:nth-child(4) { animation-delay: 0.4s; }
.link-item:nth-child(5) { animation-delay: 0.5s; }
.link-item:nth-child(6) { animation-delay: 0.6s; }

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-item:hover::before {
    left: 100%;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.link-item:active {
    transform: translateY(0);
}

.link-icon {
    font-size: 1.5rem;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #ffffff;
}

.link-subtitle {
    font-size: 0.9rem;
    color: #cbd5e1;
    opacity: 0.8;
}

.link-arrow {
    font-size: 1.2rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #64748b;
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    margin-bottom: 0px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.social-icon img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon:hover img {
    filter: brightness(0) invert(1);
}

.social-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
}

.social-icon.youtube:hover img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(7426%) hue-rotate(357deg) brightness(104%) contrast(115%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, rgba(405, 87, 58, 0.2), rgba(156, 56, 187, 0.2), rgba(254, 208, 0, 0.2));
}

.social-icon.instagram:hover img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(2613%) hue-rotate(315deg) brightness(93%) contrast(94%);
}

.social-icon i {
    font-size: 1.5rem;
}

/* Hizmet kategorileri */
.service-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 16px;
    position: relative;
    opacity: 0.9;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* n8n özel stilleri */
.n8n-item {
    background: rgba(234, 75, 113, 0.05) !important;
    border-color: rgba(234, 75, 113, 0.2) !important;
}

.n8n-item:hover {
    background: rgba(234, 75, 113, 0.1) !important;
    border-color: rgba(234, 75, 113, 0.3) !important;
    box-shadow: 0 10px 25px rgba(234, 75, 113, 0.15) !important;
}

.n8n-icon {
    background: rgba(234, 75, 113, 0.15) !important;
}

.n8n-item .n8n-icon img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(89%) saturate(1835%) hue-rotate(331deg) brightness(93%) contrast(96%) !important;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

/* Keşfet butonu stilleri */
.discover-section {
    margin: 16px 0;
    position: relative;
}

.discover-btn {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    width: 100%;
    gap: 14px;
}

.discover-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.discover-btn:hover::before {
    left: 100%;
}

.discover-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.discover-btn:active {
    transform: translateY(0);
}

.link-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.link-title {
    font-weight: 600;
    font-size: 1rem;
    color: white;
    line-height: 1.2;
}

.link-subtitle {
    font-weight: 400;
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.3;
    opacity: 0.8;
}

.discover-arrow {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.discover-btn.active .discover-arrow {
    transform: rotate(180deg);
}

.discover-menu {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.discover-menu.show {
    opacity: 1;
    visibility: visible;
    max-height: 2000px;
    padding: 12px;
}

.discover-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 4px;
}

.discover-item:last-child {
    margin-bottom: 0;
}

.discover-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.discover-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.discover-icon img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}


/* Responsive tasarım */
@media (min-width: 481px) {
    .container {
        max-width: 520px;
        padding: 50px 30px;
    }
    
    .profile-section {
        margin-bottom: 50px;
    }
    
    .links-section {
        gap: 18px;
    }
    
    .link-item {
        padding: 22px 26px;
    }
    
    .discover-btn {
        padding: 22px 26px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 600px;
        padding: 60px 40px;
    }
    
    .profile-image {
        width: 140px;
        height: 140px;
    }
    
    .name {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .description {
        font-size: 1.2rem;
    }
    
    .link-item {
        padding: 24px 28px;
    }
    
    .discover-btn {
        padding: 24px 28px;
    }
    
    .social-icons {
        gap: 20px;
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 16px;
        max-width: 100%;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .link-item {
        padding: 18px 20px;
    }
    
    .link-icon {
        font-size: 1.3rem;
    }
    
    .discover-btn {
        padding: 18px 20px;
    }
    
    .discover-menu {
        margin-top: 10px;
        max-width: 100%;
    }
    
    .discover-menu.show {
        max-height: 180px;
        padding: 10px;
    }
    
    .discover-item {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .discover-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .link-item {
        padding: 16px 18px;
    }
}

/* Çerez Bildirimi Stilleri */
.cookie-consent {
    position: fixed;
    bottom: 16px;
    left: 16px;
    max-width: 320px;
    z-index: 1000;
    transform: translateY(120%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    background: rgba(30, 41, 93, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-text {
    font-size: 0.875rem;
    color: #e2e8f0;
    line-height: 1.4;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: auto;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Çerez bildirimi responsive tasarım */
@media (max-width: 480px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 12px;
    }
    
    .cookie-content {
        padding: 14px;
    }
    
    .cookie-text {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .cookie-buttons {
        gap: 6px;
    }
    
    .cookie-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
        flex: 1;
    }
}
