﻿/*
Theme Name: RedPaperDaily
Author: Buule John
Description: Google-style song search engine theme
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #202124;
    margin: 0;
}

a {
    color: #1a0dab;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    text-align: center;
    padding: 30px 0;
}

.logo {
    font-size: 36px;
    font-weight: 700;
    color: #4285F4; /* Google Blue */
}

.search-bar {
    width: 60%;
    max-width: 600px;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 24px;
    border: 1px solid #dfe1e5;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    margin: 20px auto;
    display: block;
}

.result-item {
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.result-title {
    font-size: 18px;
    font-weight: 500;
}

.result-url {
    font-size: 14px;
    color: #006621;
}

.result-snippet {
    font-size: 14px;
    color: #545454;
}

.top-songs {
    width: 60%;
    margin: 30px auto;
}

.top-songs h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.top-songs ul {
    list-style: none;
    padding: 0;
}

.top-songs li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.top-songs li span {
    color: #70757a;
    font-size: 14px;
    margin-left: 10px;
}

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #70757a;
}

.song-cover {
    position: relative;
}

.song-cover img {
    display: block;
    max-width: 100%;
}

.song-cover::after {
    content: "RedPaperDaily";
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    pointer-events: none;
}