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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(255, 243, 222, 0.884);
    font-family: 'roboto', 'sans-serif';
    padding: 20px;
}

.links-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 480px;
    gap: 12px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.back-btn {
    background: #ff6600;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-size: 1rem;
}


a:hover {
    background: #faa268;
}

/* <a> etiketlerinin kapsayıcısı */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* <a> etiketlerinin kart stili */
.link-card {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    background-color: #ff922b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.link-explanation {
    font-size: 0.92rem;
    color: #fff3d4;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 400;
}

.link-url {
    font-size: 0.825rem;
    color: #ffe0b2;
    opacity: 0.9;
}

/* Hover ve Active Efektleri */
.link-card:hover {
    transform: translateY(-4px);
    background-color: #ff922b;
    border-color: #ff4d00;
    box-shadow: 0 12px 24px #ffa179;
}

.link-card:hover .link-title {
    color: #ff4d00;
}

.link-card:active {
    transform: translateY(-1px);
}