* {
    margin: 0;
    box-sizing: border-box;
    gap: 0;
    padding: 0;
}

:root {
    --primary-color: #ffd230;
    --secundary-color: #f5f5f5;
    --dark-color: #1e1e1e;
    --font-size-title: 2.2rem;
    --font-size-subtitle: 1.8rem;
    --font-size: 1.5rem;
    --font-size2: 1.2rem;
    --font-size3: 1rem;
    --font-size4: 0.8rem;
    --font-size4: 0.7rem;
    --transition: all 0.3s ease;
    --border: 10px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--secundary-color);
    width: 100vw;
    height: 100vh;
}

#ctn-btn-add button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 100px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0px 0px 10px 2px #00000065;
}

#nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: center;
    padding: 10px 15px 20px 15px;
    background: var(--dark-color);
    box-shadow: 0px 0px 10px 2px #00000065;
}

nav ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
    list-style: none;
}

nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 57px;
    padding: 5px;
    gap: 5px;
    font-size: var(--font-size4);
    color: #a8a8a8;
}

nav ul li .active {
    color: var(--secundary-color);
}

nav ul li span a {
    margin-top: -30px;
    display: flex;
    width: 70px;
    height: 70px;
    border: 4px solid var(--dark-color);
    border-radius: 50%;
    color: var(--secundary-color);
    background: red;
    box-shadow: 0px 0px 10px 2px #00000065;
}

ion-icon {
    font-size: var(--font-size);
}

#header {
    overflow: hidden;
    padding: 20px;
}

.ctn-header-user {
    display: flex;
    justify-content: space-between;
}

.header-user {
    display: flex;
    align-items: center;
}

.header-user img {
    display: flex;
    width: 50px;
    border-radius: 50%;
}

.info-header-user {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    gap: 1px;
}

.info-header-user #user-name {
    display: flex;
    align-items: center;
    font-size: var(--font-size3);
    font-weight: 600;
}

.info-header-user #user-name i {
    margin-left: 4px;
    color: #008cff;
    font-size: var(--font-size4);
}

.info-header-user #my-team {
    font-size: var(--font-size4);
}

.notification a {
    display: flex;
}

.nav-search {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.menu a {
    display: flex;
    align-items: center;
    font-size: var(--font-size4);
    gap: 4px;
}

.search {
    display: flex;
    width: 190px;
    height: 20px;
}

.search input {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 3px;
    border: none;
    border-radius: 3px;
    outline: none;
    font-size: var(--font-size4);
    color: var(--dark-color);
    background: #d2d6e7bb;
}

.search input::placeholder {
    color: #abaebd;
}

.search button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 3px 5px;
    border: none;
    outline: none;
}

.search button ion-icon {
    font-size: var(--font-size3);
}

/*carousel */
#ctn-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 300px;
    border-radius: var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.carousel:hover {
    transform: scale(1.02);
}

.carousel-ctn {
    display: flex;
    transition: var(--transition);
}

.carousel-slide {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.banner {
    display: flex;
}

.banner .img-banner img {
    display: flex;
    width: 300px;
}

.carousel-dots {
    display: flex;
    margin-top: 10px;
    gap: 10px;
    justify-content: center;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--dark-color);
    cursor: pointer;
}

.dot.active {
    background-color: red;
}

/* style-to-play */
#content-to-play {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#maps h1 {
    text-align: center;
    font-size: var(--font-size3);
    font-weight: 600;
}

#maps iframe {
    margin-top: 10px;
    border: 1px solid #c4c4c4;
    border-radius: var(--border);
}

#events {
    margin-top: 30px;
}

#events h1 {
    margin-left: 30px;
    font-size: var(--font-size3);
}

#ctn-post-event {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.post-event {
    display: flex;
    justify-content: space-between;
    width: 85%;
    padding: 10px;
    background: #dfdfdf;
    border: 1px solid #c9c9c9;
    border-radius: var(--border);
}

.event-info h2 {
    font-size: var(--font-size4);
    font-weight: 600;
}

.event-info h3 {
    margin-top: 10px;
    font-size: var(--font-size4);
    font-weight: 500;
}

.event-info h4 {
    margin-top: 3px;
    width: 75%;
    font-size: var(--font-size4);
    font-weight: 400;
    color: #3f3f3f;
}

.ctn-btn-event {
    display: flex;
    align-items: end;
}

.post-event button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 25px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
}

#go-top {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 190px;
}

#go-top a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 100px;
    height: 25px;
    border: 1px solid #c9c9c9;
    font-size: var(--font-size4);
    color: black;
    border-radius: 5px;
}

/* style-profile */
#ctn-profile {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

#ctn-user-name-profile {
    display: flex;
    margin-left: 30px;
}

#ctn-user-name-profile h1 {
    font-size: var(--font-size2);
    font-weight: 700;
}

#profile {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0px 20px;
}

#header-profile {
    display: flex;
    justify-content: space-between;
}

#ctn-img-profile img {
    display: flex;
    width: 70px;
    border-radius: 50%;
}

#ctn-following-followers {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

#followers h1 {
    font-size: var(--font-size2);
    font-weight: 300;
}

#followers h2 {
    font-size: var(--font-size4);
    font-weight: 300;
}

#following h1 {
    font-size: var(--font-size2);
    font-weight: 300;
}

#following h2 {
    font-size: var(--font-size4);
    font-weight: 300;
}

#ctn-img-my-team img {
    display: flex;
    width: 40px;
}

#ctn-bio {
    padding: 0px 0px 20px 0px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 1px 0px 0px #c4c4c4;
}

#bio {
    width: 100%;
}

#bio #user-profile {
    font-size: 0.9rem;
    font-weight: 600;
}

#bio h2 {
    margin-top: 4px;
    width: 75%;
    font-size: var(--font-size4);
    line-height: 13px;
    font-weight: 400;
    color: #414141;
}

#links-social {
    display: flex;
    flex-direction: column;
}

#links-social a {
    color: #1e1e1e;
}

#feed-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 20px 190px 20px;
    gap: 20px;
}

.post-profile {
    display: flex;
    flex-direction: column;
    width: 150px;

}

.post-profile video {
    display: flex;
    width: 150px;
    height: 100%;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 2px #00000028;
}