*{margin:0;padding:0;box-sizing:border-box}

html,body{
    height:100%;
    font-family:Tahoma,Verdana,Arial,sans-serif;
    font-size:14px;
    color:#c7d5e0;
    background:
        linear-gradient(180deg,#1c2e3a 0%,#0b1116 100%);
    background-attachment:fixed;
}

body{
    display:flex;
    flex-direction:column;
    align-items:center;
}

p{margin-bottom:10px;line-height:1.6}
b,strong{color:#fff}
i,em{color:#9fbad0}
u{text-decoration:underline}
s,strike{color:#7a8a99}
small{font-size:12px;color:#7f93a6}

pre{
    background:rgba(0,0,0,.6);
    border:1px solid rgba(255,255,255,.08);
    padding:12px;
    margin:12px 0;
    font-family:Consolas,monospace;
    font-size:13px;
    color:#9fd6ff;
    overflow:auto
}

code{
    background:rgba(0,0,0,.45);
    padding:2px 6px;
    border-radius:3px;
    color:#8fd3ff
}

h1,h2,h3,h4,h5,h6{
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
    color:#fff;
    font-weight:normal
}

h1{font-size:26px}
h2{font-size:22px}
h3{font-size:18px}
h4{font-size:16px}
h5{font-size:14px}
h6{font-size:12px}

a{color:#66c0f4;text-decoration:none}
a:hover{color:#a4d7f5;text-shadow:0 0 6px rgba(102,192,244,.6)}

ul,ol{margin:10px 0 10px 20px}
li{margin-bottom:6px}

blockquote{
    border-left:4px solid #3a6f93;
    background:rgba(0,0,0,.4);
    padding:10px 14px;
    margin:12px 0;
    color:#9fbad0
}

table{
    width:100%;
    border-collapse:collapse;
    margin:12px 0
}

th,td{
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.08)
}

th{
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:12px;
    text-transform:uppercase
}

td{background:rgba(0,0,0,.35)}

input,textarea,select{
    background:rgba(0,0,0,.6);
    border:1px solid rgba(255,255,255,.1);
    color:#c7d5e0;
    padding:6px 8px;
    font-family:inherit
}

textarea{
    resize: vertical;
}


input:focus,textarea:focus{
    outline:none;
    border-color:#66c0f4
}

button{
    background:linear-gradient(#3b6c8f,#27485f);
    border:1px solid #1e3a4d;
    color:#fff;
    padding:8px 16px;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer
}

button:hover{
    background:linear-gradient(#4a8ab8,#2f5d7c)
}

.sf-navbar{
    width:100%;
    max-width:1100px;
    margin-top:20px;
    display:flex;
    gap:24px;
    padding:14px 18px;
    background:linear-gradient(#223f55,#14232e);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 8px 30px rgba(0,0,0,.6)
}

.sf-navbar a{
    color:#c7d5e0;
    text-transform:uppercase;
    font-size:13px
}

.sf-navbar a:hover{color:#fff}

.sf-container{
    width:100%;
    max-width:1100px;
    margin:24px auto;
}

.sf-panel{
    background:linear-gradient(rgba(255,255,255,.05),rgba(0,0,0,.5));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.04),0 12px 40px rgba(0,0,0,.7);
    padding:18px;
    margin-bottom:20px
}

.sf-title{
    font-size:16px;
    color:#fff;
    text-transform:uppercase;
    border-bottom:1px solid rgba(255,255,255,.12);
    padding-bottom:8px;
    margin-bottom:12px
}

.sf-footer{
    margin:30px 0;
    font-size:12px;
    color:#7f93a6
}


input[type="file"]{
    width:100%;
    padding:0;
    border:none;
    background:transparent;
}


input[type="file"]::file-selector-button{
    background:linear-gradient(#3b6c8f,#27485f);
    border:1px solid #1e3a4d;
    color:#fff;
    padding:4px 10px;
    font-size:12px;
    margin-right:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
    font-family:inherit;
}


input[type="file"]::file-selector-button:hover{
    background:linear-gradient(#4a8ab8,#2f5d7c);
}


input[type="file"]::file-selector-text{
    color:#c7d5e0;
}




.team-card{
    padding:14px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.25);
    margin-bottom:18px;
}

.team-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.team-head img.team-avatar{
    width:64px;
    height:64px;
    object-fit:cover;
}

.team-name{
    font-size:18px;
    color:#fff;
}

.team-flag{
    width:22px;
    height:16px;
    object-fit:cover;
}

.team-members{
    margin-top:10px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.player{
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 8px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
}

.player img.avatar{
    width:28px;
    height:28px;
    object-fit:cover;
}

.player img.flag{
    width:18px;
    height:14px;
    object-fit:cover;
}


.invite-card{
    padding:12px;
    margin-bottom:12px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.25);
}

.invite-actions{
    margin-top:8px;
    display:flex;
    gap:10px;
}


.team-title{
    display:flex;
    align-items:center;
    gap:8px;
}


.team-preview{
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
}


.team-hidden{
    margin-top:12px;
    display:none;
}


.team-hidden.open{
    display:block;
}


.player{
    text-decoration:none;
    color:#c7d5e0;
}

.player:hover{
    background:rgba(102,192,244,.15);
    border-color:#66c0f4;
}


.team-avatar{
    width:64px;
    height:64px;
    object-fit:cover;
    flex-shrink:0;
}

.irs {
    width: 595px;
    height: 300px;
    object-fit: cover;  
}

.news-post {
    margin-bottom: 20px;
    padding: 15px;
    background: #121c24
}

.news-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-top: 10px;
}

.news-image {
    margin-top: 10px;
}

.news-image img {
    width: 595px;
    height: 300px;
    object-fit: cover;
}

.sf-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}