:root {
    --container-background: #ffffff;
    --page-background: #f3f3f3;
    --accent-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.155);
    --text-primary: #333;
    --text-invert: #fff;
    --icon-bg: #000000;
    --gradient-overlay: linear-gradient(to top, rgba(0, 0, 0, 0.377), rgba(0, 0, 0, 0));
}

body,
html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    background-color: var(--page-background);
    min-height: -webkit-fill-available;
    text-decoration: none;

}

.video {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    z-index: -1;
    object-fit: cover;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.top-line {
    width: 100%;
    height: 30px;
    background-color: (var(--page-background));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-note {
    color: white;
    text-decoration: none;
}


.profile-container {
    background-color: var(--container-background);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 20px var(--shadow-color);
    width: 95%;
    max-width: 420px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--container-background);
    margin-bottom: 10px;
    top: 100px;
}

.profile-name {
    font-size: 24px;
    margin: 10px 0;
    padding-bottom: 10px;
    color: rgb(0, 0, 0);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    margin-bottom: 30px;
}

.social-icons a {
    display: inline-block;
    margin: 0;
    background-color: var(--icon-bg);
    border-radius: 50%;
}

.social-icons img,
.email-icon {
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    filter: brightness(0) invert(1);
}

.email-container {
    display: inline-block;
    margin: 0;
    background-color: var(--icon-bg);
    border-radius: 50%;
}

.content-block {
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    margin: 20px 0;
    box-shadow: 0 0 10px var(--shadow-color);
    overflow: hidden;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.content-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.content-block p {
    position: absolute;
    bottom: 6px;
    left: 10px;
    margin: 0;
    padding: 10px;
    font-size: 16px;
    color: var(--text-invert);
    border-radius: 10px;
    z-index: 2;
    font-weight: bolder;
    letter-spacing: 0.02px;
    text-align: left;
    max-width: 200px;
}

.copy-span {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: var(--text-invert);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
}

.content-block .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    background: none;
    z-index: 2;
    display: block;
}

.drop {
    width: 100%;
    margin-top: -55px;
    height: 40px;
    background-color: var(--accent-color);
    z-index: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.brand-title {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-primary);
    text-align: left;
}

.brand-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .brand-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-container {
        width: 70%;
        padding: 30px;
        background-color: transparent;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 468px) {
    .brand-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-container {
        width: 100%;
        padding: 20px;
        background-color: transparent;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .content-block {
        width: 100%;
    }

    .brand-container {
        width: 100%;
    }

    .brand-block img {
        width: 100%;
    }
}

.brand-block {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.brand-image {
    position: relative;
}

.brand-block img {
    width: 100%;
    display: flex;
    max-height: 100px;
    overflow: hidden;
    object-fit: cover;
}

.brand-block p {
    padding: 10px;
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    z-index: 2;
    text-align: left;
    font-weight: bold;
}

.brand-block .cart-icon {
    position: absolute;
    bottom: 8px;
    right: 2px;
    max-width: 20px;
    max-height: 1px;
    z-index: 1000;
    filter: brightness(0) invert(1);
}

.brand-contents {
    position: relative;
    overflow: hidden;
    background-color: var(--container-background);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--shadow-color);
    box-sizing: border-box;
    min-height: 148px;
    flex-direction: column;
    z-index: 3;
    border: 1px solid #e5e5e5;
}

.drop-brand {
    position: absolute;
    width: 100%;
    bottom: -6px;
    height: 15px;
    background-color: var(--accent-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.discord-join-container {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    z-index: 11;
    overflow: hidden;
}

.discord-banner {
    width: 140px;
    flex-shrink: 0;
    background-color: #ddd;
}

.discord-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 16px;
    text-decoration: none;
}

.discord-text .discord-text:hover{
    font-size: 1rem;
    color: #ff0000;
    margin: 0;
    text-decoration: none;
}


.discord-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 20px;
}
