* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none;
    background: none;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f0f0f !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    padding: 20px;
}

.container {
    display: grid;
    grid-template-columns: 280px 400px 280px;
    grid-template-rows: auto auto auto;
    gap: 20px;
    width: fit-content;
    max-width: 1000px;
}

.card {
    background: #1a1a1a !important;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.card:hover {
    border-color: #3a3a3a;
    transform: translateY(-2px);
}

/* Tech Stack Card */
.tech-stack {
    grid-column: 1;
    grid-row: 1 / 3;
    background: #1a1a1a !important;
    animation-delay: 0.1s;
}

.tech-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.tech-section {
    margin-bottom: 20px;
}

.tech-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-bottom: 12px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-item {
    background: #2a2a2a !important;
    color: #ccc;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Profile Card */
.profile-card {
    grid-column: 2;
    grid-row: 1;
    background: #1a1a1a !important;
    animation-delay: 0.2s;
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.profile-info h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.profile-handle {
    color: #888 !important;
    font-size: 14px;
    margin-bottom: 8px;
}

.profile-desc {
    font-size: 14px;
    color: #ccc;
}

.status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

/* Links Card */
.links-card {
    grid-column: 3;
    grid-row: 1;
    animation-delay: 0.3s;
}

.links-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    background: #2a2a2a !important;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

.social-btn:hover {
    background: #3a3a3a;
    transform: translateY(-1px);
}

.social-btn.github { background: #2d3748; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.linkedin { background: #0077b5; }
.social-btn.email { background: #dc2626; }

/* Project Card */
.project-card {
    grid-column: 2;
    grid-row: 2;
    background: linear-gradient(135deg, #a855f7, #3b82f6) !important;
    border: none;
    animation-delay: 0.4s;
    color: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.project-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.project-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Daily Tools Card */
.tools-card {
    grid-column: 3;
    grid-row: 2 / 4;
    background: #1a1a1a;
    animation-delay: 0.5s;
}

.tools-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.tool-icon.vscode { background: #007acc; }
.tool-icon.figma { background: #f24e1e; }
.tool-icon.notion { background: #000000; }
.tool-icon.chrome { background: #4285f4; }

.tool-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.tool-info p {
    font-size: 12px;
    color: #888;
}

/* Status Card */
.status-card {
    grid-column: 1 / 3 !important;
    grid-row: 3 !important;
    background: #1a1a1a !important;
    animation-delay: 0.6s;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.status-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981 !important;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 14px;
    color: #ccc;
}

.last-updated {
    font-size: 12px;
    color: #666;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        max-width: 400px;
    }
    
    .tech-stack, .profile-card, .links-card, .project-card, 
    .tools-card, .status-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}