:root {
    --bg-primary: #000000;
    --bg-secondary: #0b121a;
    --card-bg: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.10);
    --text-primary: #e5e7eb;
    --text-secondary: #9aa4b2;
    --accent: #4f9cff;
}

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

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
}

.background {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(800px 400px at 20% 30%, rgba(79,156,255,0.08), transparent),
        radial-gradient(700px 350px at 80% 70%, rgba(120,80,255,0.06), transparent),
        linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.box {
	position: fixed;
	top: 0;
	transform: rotate(360deg);
	left: 0;
}

.wave {
	position: fixed;
	bottom: 0;
	left: 0;
    opacity: .4;
    position: absolute;
    top: 3%;
    left: 10%;
    background: rgb(11, 23, 29);
    width: 1500px;
    height: 1300px;
    /* margin-left: -150px; */
    /* margin-top: -250px; */
    transform-origin: 50% 48%;
    border-radius: 43%;
    animation: drift 17000ms infinite linear;
}

.wave.-three {
    animation: drift 17500ms infinite linear;
    position: fixed;
    background-color: #101c20;
}

.wave.-two {
  animation: drift 10000ms infinite linear;
  opacity: .1;
  background: #000000;
	position: fixed;
}

.box:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

@keyframes drift {
  from { transform: rotate(0deg); }
  from { transform: rotate(360deg); }
}

.contain {
	animation-delay: 4s;
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #25a7d7;
    background: -webkit-linear-gradient(#25a7d7, #2962FF);
    background: linear-gradient(#25a7d7, #25a7d7);
}

.icon {
    width: 100px;
    height: 100px;
    margin: 0 5px;
}

.icon:nth-child(2) img {-webkit-animation-delay: 0.2s;animation-delay: 0.2s}
.icon:nth-child(3) img {-webkit-animation-delay: 0.3s;animation-delay: 0.3s}
.icon:nth-child(4) img {-webkit-animation-delay: 0.4s;animation-delay: 0.4s}

.icon img {
    -webkit-animation: anim 2s ease infinite;
    animation: anim 2s ease infinite;
    -webkit-transform: scale(0,0) rotateZ(180deg);
    transform: scale(0,0) rotateZ(180deg);
}

@-webkit-keyframes anim{
    0% {
        -webkit-transform: scale(0,0) rotateZ(-90deg);
        transform: scale(0,0) rotateZ(-90deg);opacity:0
    }
    30% {
        -webkit-transform: scale(1,1) rotateZ(0deg);
        transform: scale(1,1) rotateZ(0deg);opacity:1
    }
    50% {
        -webkit-transform: scale(1,1) rotateZ(0deg);
        transform: scale(1,1) rotateZ(0deg);opacity:1
    }
    80% {
        -webkit-transform: scale(0,0) rotateZ(90deg);
        transform: scale(0,0) rotateZ(90deg);opacity:0
    }
}

@keyframes anim{
    0% {
        -webkit-transform: scale(0,0) rotateZ(-90deg);
        transform: scale(0,0) rotateZ(-90deg);opacity:0
    }
    30% {
        -webkit-transform: scale(1,1) rotateZ(0deg);transform: scale(1,1) rotateZ(0deg);opacity:1
    }
    50% {
        -webkit-transform: scale(1,1) rotateZ(0deg);
        transform: scale(1,1) rotateZ(0deg);opacity:1
    }
    80% {
        -webkit-transform: scale(0,0) rotateZ(90deg);
        transform: scale(0,0) rotateZ(90deg);opacity:0
    }
}

.container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

h1 {
    font-size: 1.6rem;
    font-weight: 600;
}

h2 {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 4px;
}

.location {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, border 0.2s ease, transform 0.15s ease;
}

.button:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.section {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.section strong {
    color: var(--text-primary);
    font-weight: 500;
}

footer {
    margin-top: 28px;
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}
