:root {
    --accent-color: #7ee29f;
    --dark-bg: linear-gradient(145deg, rgba(40, 40, 60, 0.95) 0%, rgba(60, 60, 80, 0.95) 100%);
}

body {
    font-family: 'Arial Rounded MT Bold','Liberation Sans',Arial,sans-serif;
    background-color: #606060;
    background-image: url("img/bg.png?raw=true");
    background-position: center top;
    background-attachment: fixed;
    margin: 0;
    min-height: 130vh;
}

h1, h2, h3, h4 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 1rem 0;
}

.tab-button {
    background: rgba(40,40,60,0.7);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}
.tab-button.active {
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
}
.tab-button:hover {
    transform: translateY(-3px);
}

.warn {
    font-size:50px; 
    color:rgb(109, 18, 18);
    transition: all 0.3s ease;
}

.warn:hover{

    text-shadow: 0 1px 10px rgba(255, 0, 0, 0.836);
    color:rgb(202, 15, 15);
    transition: all 0.3s ease;
}

.names{

    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.names:hover{

    text-shadow: 0px 0px 8px rgba(83, 248, 133, 0.651);
    transition: all 0.3s ease;
}

.received {
    background: var(--accent-color);
    padding: .8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all .3s ease;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}
.received:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--accent-color);
}

.clicklink {
    color: #7ee29f;
    font-family: cursive;
    font-size: 16px;
    text-decoration: none;
    transition: color .3s ease;
}
.clicklink:hover {
    color: #aee7bd;
}

.header {
    background: var(--dark-bg);
    width: 80%;
    max-width: 800px;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.holder {
    background: var(--dark-bg);
    width: 80%;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

@keyframes floatText {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}
#rdmtext {
    animation: floatText 2s ease-in-out infinite;
    display: inline-block;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all .3s ease;
}
#rdmtext:hover {
    text-shadow: 0 0 8px rgba(83,248,133,0.65);
}

.tab-content {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.content-pane {
    position: absolute;
    width: 100%;
    top: 0;
    transform: translateX(100%);
    opacity: 0;
    transition: all .5s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.content-pane.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}
.content-pane.exit {
    transform: translateX(-100%);
    opacity: 0;
}

.kekpic {
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    transition: transform .3s ease;
    box-shadow: 0 0 20px rgba(120,227,149,0.3);
}
.kekpic:hover {
    transform: scale(1.05) rotate(5deg);
}
.rotimg {
    transition: transform .8s ease-in-out;
}
.rotimg:active {
    transform: rotate(360deg) scale(0,0);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 1rem;
    padding: 1rem;
}
.link-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(88,175,91,0.08);
    border-radius: 10px;
    transition: all .3s ease;
    border: 1px solid transparent;
}
.link-item:hover {
    background: rgba(51,145,54,0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
}
.link-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px,1fr));
    gap: 1rem;
    padding: 1rem;
    justify-items: center;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    margin: 2rem auto;
}
.char-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: red;
    border: 2px solid white;
}

.character-profile-holder {
  margin-top: 2rem;
  text-align: left;
}

.char-profile {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.char-profile-img {
  width: 150px;
  border-radius: 10px;
  display: block;
}

.char-profile-info h3 {
  margin-top: 0;
}
.char-profile-info p {
  margin: 0.5rem 0;
}

.char-circle {
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.char-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px var(--accent-color);
}

.character-profile-holder {
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
}
.character-profile-holder.show {
  opacity: 1;
  transform: translateY(0);
}

.char-profile-container {
  opacity: 1;
  transform: translateY(0);
  transition: all .3s ease;
}
.char-profile-container.hide {
  opacity: 0;
  transform: translateY(10px);
}
