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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.main-content {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 30px;
    margin-bottom: 30px;
}

/* Left Sidebar */
.left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.widget h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget h3 i {
    color: #3498db;
}

.tweet-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tweet {
    padding: 15px;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    background: #f8f9fa;
}

.tweet-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tweet-time {
    color: #657786;
    font-size: 0.9rem;
}

.tweet p {
    font-size: 0.95rem;
    color: #14171a;
}

/* Center Content */
.center-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #3498db;
}

.profile-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.profile-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.profile-content h3 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.profile-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link.github {
    background: #333;
    color: white;
}

.social-link.note {
    background: #41c9b4;
    color: white;
}

.social-link.vrchat {
    background: #1778f2;
    color: white;
}

/* Blog Section */
.blog-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.blog-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-section h3 i {
    color: #e74c3c;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.blog-post {
    padding: 20px;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    background: #f8f9fa;
}

.blog-post h4 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
}

.blog-post h4 a:hover {
    color: #3498db;
}

.blog-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 8px 0;
}

.blog-post p {
    color: #555;
    line-height: 1.6;
}

.blog-more {
    text-align: center;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.btn-more:hover {
    transform: translateY(-2px);
}

/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-item {
    padding: 15px;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    background: #f8f9fa;
}

.game-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.rank-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rank {
    font-weight: bold;
    color: #27ae60;
}

.rr {
    color: #3498db;
    font-weight: 500;
}

.drama-progress {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drama-item {
    padding: 15px;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    background: #f8f9fa;
}

.drama-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Footer */
.footer {
    background: white;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .left-sidebar,
    .right-sidebar {
        order: 1;
    }
    
    .center-content {
        order: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .skills {
        justify-content: center;
    }
}
