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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #222;
    color: #e0e0e0;
    overflow-x: hidden;
    min-height: 100vh;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 25% 40%, rgba(110, 107, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(87, 158, 140, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 60, 122, 0.12) 0%, transparent 60%);
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    perspective: 1500px;
}

.card {
    background: rgba(18, 18, 18, 0.85);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    width: 100%;
    max-width: 900px;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 2rem;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
}

.vertical-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    margin-right: 10rem;
}
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}
.header {
    display: flex;
}
.text {
    flex-direction: column;
}

.subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.main-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 0rem;
}

.section {
    margin-bottom: 2rem;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 166, 0, 0.5);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.status {
    padding: 0.8rem 1.2rem;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.status.ok {
    background: rgba(76, 255, 154, 0.1);
    color: #4cff9a;
    border: 1px solid rgba(76, 255, 154, 0.3);
}

.status.bad {
    background: rgba(255, 76, 76, 0.1);
    color: #ff4c4c;
    border: 1px solid rgba(255, 76, 76, 0.3);
}

.status.waiting {
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.6rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #fff;
    word-break: break-all;
}

.link {
    color: #00f7ff;
    text-decoration: none;
    transition: all 0.2s;
}

.link:hover {
    color: #00f7ff;
}

.copy-btn {
    display: inline-block;
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 0.4rem;
    color: #00f7ff;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: rgba(0, 247, 255, 0.2);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.language-tag {
    background: rgba(0, 247, 255, 0.08);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.language-tag:hover {
    background: rgba(0, 247, 255, 0.15);
    border-color: rgba(0, 247, 255, 0.4);
    transform: translateY(-2px);
}

.language-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.language-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #00f7ff;
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .card {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card:hover {
        transform: translateY(-5px);
    }
    
    .vertical-divider {
        display: none;
    }
    
    .title {
        font-size: 1.5rem;
    }

    .languages-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .language-icon {
        width: 28px;
        height: 28px;
    }
}