/* assets/css/style.css */
@import url('https://fonts.cdnfonts.com/css/roboto');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{background: url('../img/bg.png') no-repeat top center;}

.content-updated{text-align: center;}
.content-updated img{display: inline-block;}

.content-error{text-align: center;}
.content-error img{display: inline-block;}
.content-error a{color:blue;font-weight: bold;}


.box-link-safe a{padding:0px 10px;}
/* Speed Links Section */
.speed-links-section {
    text-align: center;
    margin-bottom: 40px;
}

.speed-title {
    color: #F91F11;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;

}

.speed-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.speed-link {
    background: url("../img/btn-link.svg") center center;
    color: white;
    padding: 0;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 69, 0, 0.3);
    overflow: hidden;
    min-width: 140px;
}

.speed-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(255, 69, 0, 0.4);
    color: white;
    text-decoration: none;
}

.link-left {

    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.link-number {
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 2px;
}

.link-status {
    font-size: 11px;
    line-height: 1;
    opacity: 0.9;
}

.link-speed {

    color: #333;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 50px;
}