@font-face {
    font-family: Bristol;
    src: url("font/Bristol.otf") format("opentype");
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.discover-btn {
    font-size: 1.5rem;
    padding: 20px 40px;
    border-radius: 50px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    border: none;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.discover-btn:hover,
.discover-btn:active,
.discover-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    color: white;
    outline: none;
}
.stats-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
    text-align: center;
}
.stats-item {
    margin: 8px 0;
}
.stats-number {
    font-weight: bold;
    font-size: 1.2em;
    color: #FFE4E1;
}
.logo{
    font-family: 'Bristol', sans-serif;
}
h1{
    font-size:1em;
}