body {
    background: radial-gradient(circle at bottom left, #3a3a3b, #000000);
    background-size: 200% 200%;
    margin: 0;
    padding: 0;
}
.container {
    display: grid;
    grid-template-areas: "header header"
                         "main content"
                         "footer footer";
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    max-width: 100%;
    padding: 0 10px;
}

.container > header {
    grid-area: header;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background-color:#181717;
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 10px 10px 0 0;
    border-bottom: rgba(25, 0, 248, 0.877) 3px solid;
    box-shadow: 0 8px 32px rgba(0, 151, 238, 0.3);
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

header .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px;
    list-style: none;
    margin: 20px 0;
    padding:20px;
}

header .navbar li {
    display: inline;
    margin: 0 20px;
    padding-left: 10px;
    padding-right: 10px;
}

header .navbar li button {
    font-family: "Roboto Mono", monospace;
    font-size: 25px;
    font-weight: 0;
    background: linear-gradient(180deg, #0287df, #01c5f7);
    color: #ffffff;
    border: none;
    margin: 10px 40px 10px 10px;
    padding: 10px 50px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    overflow: hidden;
}

header .navbar li button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skew(25deg);
    transition: left 0.6s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

header .navbar li button:hover {
    transform: scale(1.2);
    cursor: pointer;
}

header .navbar li button:hover::before {
    left: 100%;
    opacity: 1;
}

.container > main {
    display: flex;
    width: 250px;
    height: 500px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: "Roboto Mono", monospace;
    grid-area: main;
    padding: 15px;
    margin-left: 70px;
    background-color:#181717;
    border: rgba(25, 0, 248, 0.877) 1px solid;
    border-radius: 4%;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 151, 238, 0.3);
    color:#ffffff;
    animation: main-tab 0.5s ease-in-out;
    min-width: 200px;
}

.container > main .profile-pic {
    margin: 0 auto;
    width: 160px;
    height: 155px;
    border-radius: 50%;
    border: 2px solid #615e5e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.container > main .main-name {
    font-size: 2.5em;
    margin-top: 20px;
    color: #ffffff;
}

.container > main .quick-info{
    font-size: 1.5em;
    margin-top: 10px;
    color: #ffffff;
    opacity: 0.5;
}

.content {
    display: flex;
    width: 100%;
    max-width: 1300px;
    height: 500px;
    flex-direction: column;
    grid-area: content;
    font-family: "Roboto Mono", monospace;
    padding: 15px;
    background-color: #181717;
    border-radius: 20px;
    box-shadow: 8px 8px 32px rgba(0, 151, 238, 0.3);
    color: #ffffff;
    overflow: hidden;
}

.content.active {
    display: flex;
    animation: selected-tab 0.5s ease-in-out;
}

.content h3 {
    font-size: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #05d1f5;
    margin-bottom: 20px;
    color: #05d1f5;
}

@keyframes selected-tab {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes main-tab {
    from {
        opacity: 0;
        transform: translateX( -100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-right: 8px;
    vertical-align: middle;
    fill: white;
}

#social ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#social ul li {
    display: flex;
    flex-direction: column;
    margin: 20px 30px;
}

.social-button {
    position:relative;
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 300px;
    align-items: center;
    text-align: center;
    text-decoration: none;
    font-family: "Roboto Mono", monospace;
    background: linear-gradient(180deg, #0287df, #01c5f7);
    background-size: 200% 200%;
    background-position: 0% 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    padding: 15px;
    color: white;
    justify-content: flex-start;
    cursor: pointer;
    transition: box-shadow 0.5s ease;
    transform: scale(1);
    overflow: hidden;
}

.social-button .social-icon {
    margin-bottom: 10px;
    margin-right: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: rotate(0deg) scale(1);
}

.social-button .text {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: #ffffff solid 2px;
}

.social-button p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
    text-align: center;
}

.social-button:hover .social-icon {
    transform: rotate(-5deg) scale(1.15);
    filter: brightness(1.2);
}

.social-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 6px rgba(255, 255, 255, 0.8);
}

.social-button::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    pointer-events: none;
    transition: left 0.6s ease, opacity 0.3s ease;
    border-radius: 5px;
}

.social-button:hover::before{
    opacity: 1;
    left: 100%;
}

.container > footer {
    grid-area: footer;
    display: none;
    width: 99%;
    height:100px;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    background-color:#181717;
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 10px 10px 0 0;
    border: rgba(25, 0, 248, 0.877) 3px solid;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr 2fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .container > main {
        width: 200px;
        height: 400px;
        margin-left: 20px;
    }
    
    .content {
        height: 400px;
        max-width: 100%;
    }
    
    header .navbar li button {
        font-size: 20px;
        padding: 8px 30px;
        margin: 5px 20px 5px 5px;
    }
    
    #social ul {
        flex-wrap: wrap;
    }
    
    #social ul li {
        margin: 15px 20px;
    }
    
    .social-button {
        width: 180px;
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        grid-template-areas: "header"
                             "main"
                             "content"
                             "footer";
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }
    
    .container > main {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        padding: 20px 15px;
    }
    
    .container > main .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .container > main .main-name {
        font-size: 2em;
        margin-top: 15px;
    }
    
    .container > main .quick-info {
        font-size: 1.2em;
        margin-top: 8px;
    }
    
    .content {
        width: 100%;
        height: auto;
        min-height: 400px;
        margin: 0;
    }
    
    header .navbar {
        flex-direction: column;
        padding: 10px;
        margin: 10px 0;
    }
    
    header .navbar li {
        display: block;
        margin: 5px 0;
        padding: 0;
    }
    
    header .navbar li button {
        font-size: 18px;
        padding: 10px 20px;
        margin: 5px 0;
        width: 100%;
        max-width: 200px;
    }
    
    .content h3 {
        font-size: 24px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    #social ul {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
    
    #social ul li {
        margin: 10px 0;
        width: 100%;
        max-width: 250px;
    }
    
    .social-button {
        width: 100%;
        height: 200px;
        max-width: 250px;
    }
    
    .social-button .text {
        font-size: 20px;
    }
    
    .social-button p {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 5px;
        gap: 8px;
    }
    
    .container > main {
        max-width: 250px;
        padding: 15px 10px;
    }
    
    .container > main .profile-pic {
        width: 100px;
        height: 100px;
    }
    
    .container > main .main-name {
        font-size: 1.8em;
    }
    
    .container > main .quick-info {
        font-size: 1em;
    }
    
    .content {
        padding: 10px;
        min-height: 300px;
    }
    
    .content h3 {
        font-size: 20px;
    }
    
    header .navbar li button {
        font-size: 16px;
        padding: 8px 15px;
        max-width: 180px;
    }
    
    .social-button {
        height: 180px;
        max-width: 200px;
        padding: 12px;
    }
    
    .social-button .text {
        font-size: 18px;
    }
    
    .social-button p {
        font-size: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}