:root {
    --primary-color: #4285f4;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --yellow-color: #fbbc05;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--yellow-color), var(--accent-color));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;/* https://github.com/LWEAXO */
    justify-content: center;
    color: var(--light-color);
    padding: 20px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 900px;
    padding: 30px;
    margin-bottom: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.time-display:hover {
    background: rgba(0, 0, 0, 0.3);
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.search-input {/* https://github.com/LWEAXO */
    position: relative;
    display: flex;
    align-items: center;
}

.search-input i {
    position: absolute;
    left: 20px;
    color: var(--light-color);
    opacity: 0.8;/* https://github.com/LWEAXO */
    font-size: 1.2rem;
}

.search-input input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);/* https://github.com/LWEAXO */
}

.provider-btn.kick {
    background: #53fc18;
    color: #000;
}

.provider-btn.youtube {
    background: #ff0000;
}

.provider-btn.twitch {
    background: #9146ff;
}

.provider-btn.kick {
    background: #53fc18;
    color: #000;
}

.search-input button#voiceSearch {
    position: absolute;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    line-height: 1;
}

.search-input button#voiceSearch i {
    position: relative;
    left: 0px;
    display: block;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.search-input button#voiceSearch:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.search-input button#voiceSearch.listening {
    animation: pulse 1.5s infinite;
    background: var(--accent-color);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(234, 67, 53, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 67, 53, 0); }
}

.search-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.search-options select {
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.search-options select option {
    color: var(--dark-color);
    background: white;
}

.search-options select:focus {
    background: rgba(255, 255, 255, 0.3);
}

.search-buttons {
    display: flex;
    justify-content: center;
}

.primary-btn {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    width: 100%;
    justify-content: center;
}

.primary-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.search-section {
    margin-bottom: 30px;
}

.search-section h3 {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.provider-btn {
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 60px;
}

.provider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.provider-btn i { /* https://github.com/LWEAXO */
    font-size: 1.2rem;
}

.provider-btn.google {
    background: var(--primary-color);
}

.provider-btn.yandex {
    background: #ffcc00;
    color: #000;
}

.provider-btn.bing {
    background: #00809d;
}

.provider-btn.duckduckgo {
    background: #de5833;
}

.provider-btn.brave {
    background: #fb542b;
}

.provider-btn.startpage {
    background: #2f3c4f;
}

.provider-btn.lilo {
    background: #18c962;
}

.provider-btn.github {
    background: #24292e;
}

.provider-btn.google-images {
    background: linear-gradient(135deg, var(--primary-color), #db4437);
}

.provider-btn.yandex-images {
    background: linear-gradient(135deg, #ffcc00, #ff0000);
}

.provider-btn.bing-images {
    background: linear-gradient(135deg, #00809d, #7fba00);
}

.provider-btn.pinterest {
    background: #e60023;
}

.provider-btn.youtube {
    background: #ff0000;
}

.provider-btn.twitch {
    background: #9146ff;
}

@media (max-width: 768px) {
    .glass-container {
        padding: 20px;
    }
    
    .search-options {
        grid-template-columns: 1fr;/* https://github.com/LWEAXO */
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .search-input input {
        padding: 12px 15px 12px 45px;
        font-size: 0.9rem;
    }/* https://github.com/LWEAXO */
    
    .search-input i {
        left: 15px;
        font-size: 1rem;
    }
    
    .search-input button#voiceSearch {
        width: 35px;
        height: 35px;
    }
    
    .search-input button#voiceSearch i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .providers-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .time-display {
        margin-top: 10px;
        margin-right: 0px;
    }
    
    .search-section h3 {
        font-size: 1.1rem;
    }
    
    .provider-btn {
        padding: 12px;
        font-size: 0.85rem;
        min-height: 50px;
    }
}

@media (min-width: 1200px) {
    .glass-container {
        max-width: 1000px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .search-options {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .glass-container {
        max-width: 800px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .search-input input {
        font-size: 1.1rem;
    }
}

.provider-btn.wikipedia { background: #636466; }

.provider-btn.hepsiburada { background: #00aeef; }
.provider-btn.trendyol { background: #f26b38; }
.provider-btn.n11 { background: #6d2077; }
.provider-btn.amazon { background: #FF9900; color: #000; }
.provider-btn.gittigidiyor { background: #ff7800; }
.provider-btn.ciceksepeti { background: #ff3265; }
.provider-btn.morhipo { background: #8e44ad; }
.provider-btn.ebay { background: #0064D2; }/* https://github.com/LWEAXO */

.provider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

