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

body {
    font-family: 'Noto Sans SC', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e8f4ff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.4) 0%,
        rgba(16, 42, 88, 0.1) 50%,
        rgba(10, 25, 47, 0.3) 100%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(15px);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 95%, rgba(100, 150, 255, 0.03) 100%),
        linear-gradient(0deg, transparent 95%, rgba(100, 150, 255, 0.03) 100%);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

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

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(232, 244, 255, 0.15);
}

.time-display {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #64ffda;
}

.weather-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.weather-icon {
    color: #88d3ff;
    font-size: 1.1rem;
}

.weather-text {
    color: rgba(232, 244, 255, 0.9);
}

.main-header {
    margin-bottom: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.title-block {
    flex: 1;
    min-width: 300px;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #64ffda;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 
        0 0 20px rgba(100, 255, 218, 0.3),
        0 0 40px rgba(100, 255, 218, 0.2);
}

.subtitle {
    font-size: 0.95rem;
    color: rgba(232, 244, 255, 0.7);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 400;
}

.tagline {
    font-size: 1.1rem;
    color: #88d3ff;
    font-weight: 300;
    font-style: italic;
}

.weather-indicator {
    min-width: 200px;
}

.rain-intensity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.intensity-bar {
    width: 100%;
    height: 6px;
    background: rgba(232, 244, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.intensity-fill {
    height: 100%;
    background: linear-gradient(90deg, #64ffda, #88d3ff);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(136, 211, 255, 0.5);
}

.intensity-label {
    font-size: 0.85rem;
    color: rgba(232, 244, 255, 0.8);
    text-align: right;
}

.content-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.profile-section {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 25px;
}

.profile-glass, .info-card {
    background: rgba(20, 40, 80, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 244, 255, 0.1);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-glass {
    padding: 30px;
}

.profile-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(100, 255, 218, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.avatar-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(100, 255, 218, 0.3);
    box-shadow: 
        0 0 30px rgba(100, 255, 218, 0.2),
        inset 0 0 20px rgba(100, 255, 218, 0.1);
}

.avatar-frame {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(136, 211, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

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

.online-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: #64ffda;
    border-radius: 50%;
    border: 3px solid rgba(20, 40, 80, 0.3);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.profile-details {
    margin-bottom: 25px;
}

.identity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(232, 244, 255, 0.1);
}

.identity-row:last-child {
    border-bottom: none;
}

.identity-label {
    font-size: 0.9rem;
    color: rgba(232, 244, 255, 0.7);
}

.identity-value {
    font-size: 1rem;
    font-weight: 500;
    color: #88d3ff;
}

.identity-value.active {
    color: #64ffda;
}

.quote-box {
    position: relative;
    padding: 20px;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 12px;
    border-left: 3px solid #64ffda;
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2.5rem;
    font-family: serif;
    color: rgba(100, 255, 218, 0.3);
    line-height: 1;
}

.quote {
    font-size: 1.1rem;
    color: #e8f4ff;
    font-style: italic;
    padding-left: 10px;
    margin-top: 15px;
}

.data-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-item {
    background: rgba(20, 40, 80, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 244, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.data-item:hover {
    background: rgba(100, 255, 218, 0.05);
    border-color: rgba(100, 255, 218, 0.2);
}

.data-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(136, 211, 255, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #64ffda;
}

.data-content {
    flex: 1;
}

.data-number {
    font-size: 2rem;
    font-weight: 700;
    color: #64ffda;
    line-height: 1;
    margin-bottom: 5px;
}

.data-desc {
    font-size: 0.9rem;
    color: rgba(232, 244, 255, 0.7);
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.info-card {
    padding: 25px;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(232, 244, 255, 0.1);
}

.card-icon {
    font-size: 1.2rem;
    color: #88d3ff;
}

.card-header h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8f4ff;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64ffda;
    padding: 4px 12px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.skill-meter {
    margin-bottom: 20px;
}

.skill-meter:last-child {
    margin-bottom: 0;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-label span:first-child {
    font-size: 0.9rem;
    color: rgba(232, 244, 255, 0.9);
}

.skill-label span:last-child {
    font-size: 0.85rem;
    color: #64ffda;
    font-weight: 500;
}

.skill-bar {
    height: 6px;
    background: rgba(232, 244, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #64ffda, #88d3ff);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transition: width 1s ease;
}

.log-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.log-item {
    padding: 15px;
    background: rgba(232, 244, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid rgba(136, 211, 255, 0.3);
}

.log-date {
    font-size: 0.8rem;
    color: #64ffda;
    margin-bottom: 5px;
    font-weight: 500;
}

.log-content {
    font-size: 0.9rem;
    color: rgba(232, 244, 255, 0.8);
    line-height: 1.4;
}

.thought-item {
    padding: 15px;
    background: rgba(136, 211, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
}

.thought-item:last-child {
    margin-bottom: 0;
}

.thought-text {
    font-size: 0.95rem;
    color: rgba(232, 244, 255, 0.9);
    font-style: italic;
    line-height: 1.5;
}

.main-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 244, 255, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text p {
    font-size: 0.9rem;
    color: rgba(232, 244, 255, 0.7);
}

.footer-sub {
    font-size: 0.8rem;
    color: rgba(136, 211, 255, 0.6);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(232, 244, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #64ffda;
    transform: translateY(-3px);
}

.footer-link i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .profile-section {
        grid-template-columns: 1fr;
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .weather-indicator {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        width: 100%;
        justify-content: center;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.8rem;
    }
    
    .profile-glass, .info-card {
        padding: 20px;
    }
    
    .avatar-container {
        width: 120px;
        height: 120px;
    }
    
    .data-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .data-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media print {
    .status-bar,
    .online-indicator,
    .footer-links,
    .avatar-frame,
    .background-container {
        display: none;
    }
    
    body {
        background: white;
        color: #333;
    }
    
    .profile-glass, .info-card {
        background: white;
        border: 1px solid #ddd;
        box-shadow: none;
        backdrop-filter: none;
    }
}