.search-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
    justify-content: space-between;
}

.title {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin: 0;
    margin-right: 16px;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.apple-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 100px;
    padding: 4px;
    flex-grow: 1;
    max-width: 400px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.apple-search:focus-within {
    background: #ffffff;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.apple-search input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 6px 10px;
    color: #333333;
}

.search-button {
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.2);
}

.search-button:hover {
    box-shadow: 0 3px 8px rgba(66, 133, 244, 0.3);
}

.search-button:active {
    transform: translateY(1px);
}

.main-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: all 0.3s ease;
}

.main-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-header {
    background: #fbfbfd;
    padding: 12px 16px;
    border-bottom: 1px solid #f5f5f7;
}

.card-content {
    padding: 16px;
}

.card-content p {
    font-size: 17px;
    color: #1d1d1f;
    line-height: 1.5;
    margin-bottom: 24px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.link-card {
    display: block;
    background: #fbfbfd;
    border-radius: 16px;
    padding: 12px;
    text-decoration: none;
    border: 1px solid #f5f5f7;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.link-card:hover .arrow-icon {
    transform: translateX(4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transition: all 0.3s ease;
}

.github-icon { background-color: #0071e3; }
.heart-icon { background-color: #34c759; }
.book-icon { background-color: #ff9500; }

.card-icon i {
    color: white;
    font-size: 20px;
}

.card-info {
    display: flex;
    align-items: center;
}

.card-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.card-text p {
    font-size: 14px;
    color: #6e6e73;
    margin-top: 4px;
    margin-bottom: 0;
}

.card-footer {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-footer span {
    font-size: 14px;
}

.github-text { color: #0071e3; }
.heart-text { color: #34c759; }
.book-text { color: #ff9500; }

.arrow-icon {
    transition: transform 0.3s ease;
}