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

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
    color: #e0e0e0;
    font-family: 'Special Elite', cursive;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated stars background */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff006e;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

h1 {
    font-family: 'Creepster', cursive;
    font-size: 3em;
    color: #ff006e;
    text-shadow:
        0 0 5px #ff006e,
        3px 3px 0 #000;
    margin-bottom: 15px;
    position: relative;
}

/* Glitch effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2.5s infinite;
    color: #00ffff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2.5s infinite;
    color: #ff00ff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.subtitle {
    font-family: 'Pixelify Sans', cursive;
    font-size: 1.2em;
    color: #b19cd9;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px dashed #8b00ff;
    border-radius: 15px;
}

.avatar-frame {
    display: inline-block;
    padding: 5px;
    background: linear-gradient(45deg, #ff006e, #8b00ff, #ff006e);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

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

.avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1a0a1a, #0a0a0a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    font-family: 'Creepster', cursive;
    color: #ff006e;
    text-shadow: 0 0 10px #ff006e;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bio {
    margin-top: 20px;
    font-size: 1.2em;
    line-height: 1.6;
}

.quote {
    font-style: italic;
    color: #ff006e;
    font-size: 0.9em;
}

/* Social Links Section */
.social-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #8b00ff;
    border-radius: 15px;
    text-align: center;
}

.social-section h3 {
    font-family: 'Pixelify Sans', cursive;
    color: #b19cd9;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-shadow: 0 0 10px #8b00ff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff006e;
    border-radius: 12px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s;
    min-width: 100px;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.5);
}

.social-btn.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5);
}

.social-btn.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

.social-btn.twitch:hover {
    border-color: #9146FF;
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.5);
}

.social-btn.steam:hover {
    border-color: #00adee;
    box-shadow: 0 10px 25px rgba(0, 173, 238, 0.5);
}

.social-icon {
    font-size: 2.5em;
    filter: drop-shadow(0 0 5px rgba(255, 0, 110, 0.5));
}

.social-name {
    font-family: 'Pixelify Sans', cursive;
    font-size: 1em;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff006e;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 110, 0.4);
    border-color: #8b00ff;
}

.stat-number {
    font-size: 2.5em;
    font-family: 'Pixelify Sans', cursive;
    color: #ff006e;
    text-shadow: 0 0 10px #ff006e;
}

.stat-label {
    margin-top: 10px;
    color: #b19cd9;
    font-size: 0.9em;
}

/* Guestbook Section */
.guestbook {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #8b00ff;
    border-radius: 15px;
}

.guestbook h2 {
    font-family: 'Creepster', cursive;
    color: #b19cd9;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2em;
    text-shadow: 0 0 10px #8b00ff;
}

#message-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff006e;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Special Elite', cursive;
    font-size: 1em;
    transition: all 0.3s;
}

input[type="text"]:focus,
textarea:focus {
    outline: none;
    border-color: #8b00ff;
    box-shadow: 0 0 15px rgba(139, 0, 255, 0.5);
}

input[type="text"]::placeholder,
textarea::placeholder {
    color: #666;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff006e, #8b00ff);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Pixelify Sans', cursive;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.6);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Messages Section */
.messages-section {
    margin: 40px 0;
}

.messages-section h2 {
    font-family: 'Creepster', cursive;
    color: #ff006e;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    text-shadow: 0 0 10px #ff006e;
}

.messages-container {
    display: grid;
    gap: 20px;
}

.message-card {
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-left: 4px solid #ff006e;
    border-radius: 8px;
    animation: fadeIn 0.5s ease-in;
    transition: all 0.3s;
}

.message-card:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.85);
    box-shadow: -5px 0 15px rgba(255, 0, 110, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #8b00ff;
}

.message-author {
    color: #b19cd9;
    font-family: 'Pixelify Sans', cursive;
    font-weight: bold;
}

.message-date {
    color: #666;
    font-size: 0.8em;
}

.message-text {
    color: #e0e0e0;
    line-height: 1.6;
    word-wrap: break-word;
}

.no-messages {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    margin: 60px 0 20px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 2px solid #ff006e;
    color: #b19cd9;
}

.footer-icons {
    margin-top: 15px;
    font-size: 1.5em;
    color: #ff006e;
    letter-spacing: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .social-links {
        gap: 10px;
    }

    .social-btn {
        min-width: 80px;
        padding: 15px 20px;
    }

    .social-icon {
        font-size: 2em;
    }

    .stats-section {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }

    .container {
        padding: 10px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff006e, #8b00ff);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8b00ff, #ff006e);
}
