@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    --primary-color: #ff1493;
    --secondary-color: #00ffff;
    --background-color: #000000;
    --text-color: #ffffff;
    --card-bg: rgba(0, 0, 0, 0.7);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    height: 100%;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.profile-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.banner {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

#matrix-rain {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .banner {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 150px;
    }
}

.profile-card {
    background: var(--card-bg);
    border-radius: 0 0 15px 15px;
    padding: 20px;
    margin-top: -50px;
    position: relative;
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: -50px auto 20px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 4px solid var(--background-color);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.profile-info {
    text-align: center;
}

h1 {
    font-size: 2em;
    margin: 0;
    color: var(--primary-color);
    margin-top: 10px;
}

h2 {
    font-size: 1.2em;
    margin: 5px 0;
    color: var(--secondary-color);
}

.area {
    font-size: 0.9em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.slogan {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.bio {
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.interests {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.interests span {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.4em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item i {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8em;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 120px;
        height: 120px;
        margin: -30px auto 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.keys-container {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.key-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.key-label {
    font-weight: bold;
    color: var(--secondary-color);
    margin-right: 10px;
}

.key-value {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: var(--secondary-color);
}

.copy-btn i {
    transition: transform 0.3s ease;
}

.copy-btn:hover i {
    transform: scale(1.2);
}

/* Add these styles to your existing CSS file (xdrm_prf.css) */

@media (max-width: 768px) {
    .profile-container {
        width: 95%;
        padding: 10px;
    }

    
    .profile-card {
        padding: 15px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        margin: -20px auto 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1em;
    }

    .bio {
        font-size: 0.8em;
    }

    .interests span {
        font-size: 0.7em;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        font-size: 1.2em;
    }

    .keys-container {
        padding: 15px;
    }

    .key-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .key-label {
        margin-bottom: 5px;
    }

    .key-value {
        width: 100%;
        word-break: break-all;
        font-size: 0.8em;
    }

    .copy-btn {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    

    .profile-image {
        width: 100px;
        height: 100px;
        margin: -20px auto 10px;
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 0.9em;
    }

    .area, .slogan {
        font-size: 0.8em;
    }

    .bio {
        font-size: 0.75em;
    }

    .interests {
        gap: 3px;
    }

    .interests span {
        font-size: 0.6em;
        padding: 3px 6px;
    }

    .social-links a {
        font-size: 1em;
    }

    .key-label {
        font-size: 0.9em;
    }

    .key-value {
        font-size: 0.75em;
    }

    .copy-btn {
        padding: 3px 6px;
        font-size: 0.8em;
    }
}

.warning-message {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.warning-message p {
    margin: 0 0 10px;
    font-size: 0.9em;
    line-height: 1.4;
}

.warning-message strong {
    color: var(--primary-color);
}

.learn-more-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .warning-message {
        padding: 15px;
        margin-top: 20px;
    }

    .warning-message p {
        font-size: 0.8em;
    }
}