@font-face {
    font-family: 'Albert Sans';
    src: url('../fonts/AlbertSans-Regular.woff2') format('woff2'),
         url('../fonts/AlbertSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.animated-title {
    font-family: 'Albert Sans', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animated-description {
    font-family: 'Albert Sans', sans-serif;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-highlight {
    background: linear-gradient(120deg, #4CAF50 0%, #2196F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}


.errorPage {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.errorContent {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.errorImageArea {
    flex: 1;
    position: relative;
    text-align: center;
}

.errorNumber {
    font-size: 180px;
    font-weight: 800;
    background: linear-gradient(135deg, #E50647 0%, #E50647 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: "Syne", sans-serif;
    position: relative;
    z-index: 2;
}

.errorIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.errorIcon .icon {
    width: 120px;
    height: 120px;
    fill: #E50647;
    opacity: 0.1;
}

.errorBlur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    opacity: 0.3;
    z-index: 0;
}

.errorInfo {
    flex: 1;
}

.errorTitle {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: "Syne", sans-serif;
    display: flex;
    align-items: center;
    gap: 16px;
}

.errorTitle .icon {
    width: 36px;
    height: 36px;
    fill: #E50647;
}

.errorDescription {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: "Albert Sans", sans-serif;
}

.errorButtons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.primaryButton {
    background: linear-gradient(135deg, #E50647 0%, #E50647 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(229, 6, 71, 0.3);
}

.primaryButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 6, 71, 0.4);
    color: white;
}

.primaryButton .icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.secondaryButton {
    background: transparent;
    color: #E50647;
    padding: 16px 32px;
    border: 2px solid #E50647;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondaryButton:hover {
    background: #E50647;
    color: white;
    transform: translateY(-2px);
}

.helpLinks {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.helpTitle {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: "Syne", sans-serif;
}

.linkGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.helpLink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.helpLink:hover {
    background: #f8f9fa;
    border-color: #E50647;
    color: #E50647;
    transform: translateY(-2px);
}

.helpLink .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.helpLink span {
    font-weight: 500;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .errorContent {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .errorNumber {
        font-size: 120px;
    }
    
    .errorTitle {
        font-size: 32px;
        justify-content: center;
    }
    
    .errorButtons {
        flex-direction: column;
        align-items: center;
    }
    
    .primaryButton,
    .secondaryButton {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .linkGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .errorPage {
        padding: 40px 0;
    }
    
    .errorNumber {
        font-size: 100px;
    }
    
    .errorTitle {
        font-size: 28px;
    }
    
    .errorDescription {
        font-size: 16px;
    }
    
    .linkGrid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   ŞIK KART TASARIMI
   ============================================= */

section.whyContent .trustworthy .content .diffrenceCard {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Sol kenar çizgisi */
section.whyContent .trustworthy .content .diffrenceCard::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #E50647;
    transition: width 0.3s ease;
}

section.whyContent .trustworthy .content .diffrenceCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(229, 6, 71, 0.15);
}

section.whyContent .trustworthy .content .diffrenceCard:hover::before {
    width: 6px;
}

/* İkon */
section.whyContent .trustworthy .content .diffrenceCard > .icon {
    width: 40px;
    height: 40px;
    fill: #E50647;
}

/* Başlık */
section.whyContent .trustworthy .content .diffrenceCard .info {
    color: #1a1a2e;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 16px;
}

/* Açıklama */
section.whyContent .trustworthy .content .diffrenceCard .info2 {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}


