body {
    font-family: 'Lexend', sans-serif, Helvetica, Arial;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
}
.header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD600 0%, #ff4757 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}
.header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}
.mid-container {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.mid-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #eee;
}
.suggestion-grid, .mid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.suggestion, .top-suggestion {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    text-align: center;
}
.top-suggestion {
    padding: 30px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-color: #FFD600;
    background: linear-gradient(145deg, #222 0%, #1a1a1a 100%);
}
.suggestion:hover, .top-suggestion:hover {
    transform: translateY(-5px);
    border-color: #FFD600;
    box-shadow: 0 10px 20px rgba(255, 214, 0, 0.1);
    background: #222;
}
.more-suggestions, #feeling-lucky {
    margin-top: 40px;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.more-suggestions {
    background: transparent;
    border: 2px solid #444;
    color: #888;
}
.more-suggestions:hover {
    border-color: #eee;
    color: #eee;
}
#feeling-lucky {
    background: #FFD600;
    color: #000;
    margin-left: 20px;
}
#feeling-lucky:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.3);
}
.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.back-link:hover {
    color: #FFD600;
}
.header button {
    padding: 12px 30px;
    margin: 10px;
    border-radius: 25px;
    border: 1px solid #444;
    background: #1a1a1a;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}
.header button:hover {
    border-color: #FFD600;
    background: #222;
}
.header a {
    display: block;
    margin: 30px 0;
    color: #FFD600;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
}
.header a:hover {
    text-decoration: underline;
}