* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary-color: #f5c45b;
    --primary-dark: #d4a842;
    --primary-light: #f7d88b;
    --background-dark: #0a0a0f;
    --background-card: #121218;
    --background-sidebar: #0d0d12;
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0a8;
    --border-color: #2a2a35;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --shadow: 0 4px 12px rgba(0, 0, 0, .25);
    --transition: all 0.3s ease;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    --gradient-primary: linear-gradient(135deg, #f5c45b, #d4a842)
}

body {
    align-items: center;
    background: linear-gradient(135deg, #0a0a0f, #12121a);
    color: var(--text-primary);
    display: flex;
    font-family: Poppins, sans-serif;
    justify-content: center;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px
}

.bio-card {
    animation: fadeIn .8s ease-out;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    max-width: 1000px;
    overflow: hidden;
    width: 100%
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.top-header {
    background: linear-gradient(135deg, rgba(245, 196, 91, .15), rgba(18, 18, 24, .9));
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding: 40px;
    position: relative
}

.company-identity {
    align-items: center;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2
}

.company-logo,
.company-logo-container {
    position: relative
}

.company-logo {
    align-items: center;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    height: 140px;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    width: 140px
}

.logo-placeholder {
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(245, 196, 91, .4)
}

.logo-image {
    height: 100%;
    width: 100%
}

.company-details {
    flex: 1
}

.company-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px
}

.company-slogan {
    color: var(--text-secondary);
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.main-content {
    display: grid;
    gap: 50px;
    padding: 40px
}

.section-title {
    align-items: center;
    display: flex;
    gap: 15px;
    margin-bottom: 30px
}

.section-title i {
    align-items: center;
    background: rgba(245, 196, 91, .1);
    border-radius: 12px;
    color: var(--primary-color);
    display: flex;
    font-size: 28px;
    height: 50px;
    justify-content: center;
    width: 50px
}

.section-title h2 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 600
}

.social-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr)
}

.social-item {
    align-items: center;
    background: hsla(0, 0%, 100%, .03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 25px 20px;
    position: relative;
    text-decoration: none;
    transition: var(--transition)
}

.social-item:before {
    background: linear-gradient(90deg, transparent, rgba(245, 196, 91, .08), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left .7s ease;
    width: 100%
}

.social-item:hover:before {
    left: 100%
}

.social-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(245, 196, 91, .1);
    transform: translateY(-5px)
}

.social-icon {
    align-items: center;
    border-radius: 20px;
    color: #fff;
    display: flex;
    font-size: 36px;
    height: 80px;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    width: 80px
}

.social-item:hover .social-icon {
    transform: scale(1.1) rotate(5deg)
}

.social-icon:after {
    background: linear-gradient(135deg, hsla(0, 0%, 100%, .1), transparent);
    border-radius: 20px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.social-name {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition)
}

.social-item:hover .social-name {
    color: var(--primary-light);
    transform: scale(1.05)
}

.social-item.facebook {
    border-top: 4px solid #1877f2
}

.social-item.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #3b5998);
    box-shadow: 0 8px 20px rgba(59, 89, 152, .3)
}

.social-item.instagram {
    border-top: 4px solid #e1306c
}

.social-item.instagram .social-icon {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    box-shadow: 0 8px 20px rgba(193, 53, 132, .3)
}

.social-item.tiktok {
    border-top: 4px solid #000
}

.social-item.tiktok .social-icon {
    background: linear-gradient(135deg, #000, #333 50%, #69c9d0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.social-item.snapchat {
    border-top: 4px solid #fffc00
}

.social-item.snapchat .social-icon {
    background: linear-gradient(135deg, #fffc00, gold);
    box-shadow: 0 8px 20px rgba(255, 252, 0, .3);
    color: #000
}

.social-item.map {
    border-top: 4px solid #34a853
}

.social-item.map .social-icon {
    background: linear-gradient(135deg, #34a853, #0f9d58);
    box-shadow: 0 8px 20px rgba(52, 168, 83, .3)
}

.social-item.whatsapp {
    border-top: 4px solid #25d366
}

.social-item.whatsapp .social-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 8px 20px rgba(37, 211, 102, .3)
}

.video-section {
    margin-top: 20px
}

.video-container {
    align-items: center;
    background: hsla(0, 0%, 100%, .03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    transition: var(--transition)
}

.video-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(245, 196, 91, .1);
    transform: translateY(-5px)
}

.video-wrapper {
    background: #000;
    border: 2px solid hsla(0, 0%, 100%, .1);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .6), 0 0 0 1px hsla(0, 0%, 100%, .05), 0 0 0 12px rgba(18, 18, 24, .9);
    height: 640px;
    overflow: hidden;
    position: relative;
    width: 360px
}

.video-wrapper:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0, transparent 15%, transparent 85%, rgba(0, 0, 0, .3));
    content: "";
    pointer-events: none;
    z-index: 2
}

.company-video,
.video-wrapper:after {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.company-video {
    object-fit: cover;
    z-index: 1
}

.video-controls {
    bottom: 25px;
    display: flex;
    gap: 25px;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    transition: opacity .3s ease;
    z-index: 3
}

.video-wrapper:hover .video-controls {
    opacity: 1
}

.control-btn {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, .7);
    border: 2px solid hsla(0, 0%, 100%, .3);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 22px;
    height: 55px;
    justify-content: center;
    transition: all .3s ease;
    width: 55px
}

.control-btn:hover {
    background: rgba(245, 196, 91, .9);
    border-color: var(--primary-color);
    transform: scale(1.15)
}

.video-time {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, .6);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
    right: 25px;
    top: 25px;
    z-index: 3
}

.video-error,
.video-time {
    color: #fff;
    position: absolute
}

.video-error {
    align-items: center;
    background: rgba(0, 0, 0, .85);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 30px;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 10
}

.video-error i {
    color: var(--primary-color);
    font-size: 52px;
    margin-bottom: 20px
}

.video-error h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px
}

.video-error p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: .9
}

.video-error small {
    font-size: 14px;
    margin-top: 15px;
    opacity: .7
}

@keyframes videoAppear {
    0% {
        opacity: 0;
        transform: scale(.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.video-wrapper {
    animation: videoAppear .8s ease-out
}

.card-footer {
    background: hsla(0, 0%, 100%, .02);
    border-top: 1px solid var(--border-color);
    padding: 25px 40px;
    text-align: center
}

.footer-content {
    color: var(--text-secondary);
    font-size: 14px
}

@media (max-width:900px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .top-header {
        padding: 30px 20px
    }

    .company-identity {
        flex-direction: column;
        gap: 30px;
        text-align: center
    }

    .company-logo {
        height: 120px;
        width: 120px
    }

    .logo-placeholder {
        font-size: 50px
    }

    .company-name {
        font-size: 36px
    }

    .company-slogan {
        font-size: 18px
    }

    .main-content {
        gap: 40px;
        padding: 30px 20px
    }

    .section-title h2 {
        font-size: 24px
    }

    .social-icon {
        font-size: 32px;
        height: 70px;
        width: 70px
    }

    .social-name {
        font-size: 18px
    }

    .video-container {
        padding: 15px
    }

    .video-wrapper {
        border-radius: 22px;
        height: 550px;
        width: 309.4px
    }

    .video-controls {
        bottom: 20px;
        gap: 20px
    }

    .control-btn {
        font-size: 20px;
        height: 50px;
        width: 50px
    }

    .video-time {
        font-size: 13px;
        padding: 4px 10px;
        right: 20px;
        top: 20px
    }
}

@media (max-width:600px) {
    .social-grid {
        gap: 20px;
        grid-template-columns: 1fr
    }

    .company-logo {
        height: 100px;
        width: 100px
    }

    .logo-placeholder {
        font-size: 40px
    }

    .company-name {
        font-size: 32px
    }

    .company-slogan {
        font-size: 16px;
        letter-spacing: 1px
    }

    .social-item {
        padding: 20px 15px
    }

    .video-wrapper {
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .4), 0 0 0 1px hsla(0, 0%, 100%, .05), 0 0 0 8px rgba(18, 18, 24, .9);
        height: 500px;
        width: 281.25px
    }

    .section-title {
        gap: 12px
    }

    .section-title i {
        font-size: 24px;
        height: 45px;
        width: 45px
    }
}

@media (max-width:480px) {
    body {
        padding: 15px
    }

    .bio-card {
        border-radius: 15px
    }

    .top-header {
        padding: 25px 15px
    }

    .company-logo {
        height: 90px;
        width: 90px
    }

    .logo-placeholder {
        font-size: 36px
    }

    .company-name {
        font-size: 28px;
        line-height: 1.3
    }

    .company-slogan {
        font-size: 15px;
        line-height: 1.5
    }

    .main-content {
        gap: 35px;
        padding: 25px 15px
    }

    .section-title h2 {
        font-size: 22px
    }

    .social-icon {
        font-size: 28px;
        height: 65px;
        width: 65px
    }

    .social-name {
        font-size: 17px
    }

    .video-container {
        padding: 10px
    }

    .video-wrapper {
        border-radius: 18px;
        box-shadow: 0 12px 25px rgba(0, 0, 0, .35), 0 0 0 1px hsla(0, 0%, 100%, .05), 0 0 0 6px rgba(18, 18, 24, .9);
        height: 450px;
        width: 253.125px
    }

    .video-controls {
        bottom: 15px;
        gap: 15px
    }

    .control-btn {
        font-size: 18px;
        height: 45px;
        width: 45px
    }

    .video-time {
        font-size: 12px;
        padding: 3px 8px;
        right: 15px;
        top: 15px
    }

    .card-footer {
        padding: 20px 15px
    }
}

@media (max-width:380px) {
    .company-name {
        font-size: 26px
    }

    .company-slogan {
        font-size: 14px
    }

    .social-icon {
        font-size: 26px;
        height: 60px;
        width: 60px
    }

    .social-name {
        font-size: 16px
    }

    .video-wrapper {
        border-radius: 16px;
        height: 400px;
        width: 225px
    }

    .section-title h2 {
        font-size: 20px
    }

    .section-title i {
        font-size: 22px;
        height: 40px;
        width: 40px
    }
}

@media (max-width:320px) {
    .video-wrapper {
        border-radius: 14px;
        height: 360px;
        width: 202.5px
    }

    .company-name {
        font-size: 24px
    }

    .company-logo {
        height: 80px;
        width: 80px
    }

    .logo-placeholder {
        font-size: 32px
    }
}

@media (max-height:600px) and (orientation:landscape) {
    .bio-card {
        margin: 10px auto;
        max-width: 95%
    }

    .company-identity {
        flex-direction: row;
        gap: 20px
    }

    .company-logo {
        height: 80px;
        width: 80px
    }

    .main-content {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr
    }

    .video-section {
        grid-column: span 2
    }

    .video-wrapper {
        height: 350px;
        width: 196.875px
    }
}