body {
	font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 20px 20px;
	line-height: 1.7;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	min-height: 100vh;
	color: #333;
}

.container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 30px;
	margin: 20px auto;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
	color: #2c3e50;
	text-align: center;
	font-size: 3em;
	margin: 10px 0 5px 0;
	background: linear-gradient(45deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 4px rgba(0,0,0,0.1);
	animation: fadeInUp 1s ease-out;
}

h2 {
	color: #34495e;
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 1.1em;
}

h1, h2, .project-title {
	font-family: 'Roboto', sans-serif;
}

h3 {
	color: #2c3e50;
	text-align: center;
	font-size: 1em;
	margin: 10px 0 5px 0;
}

.project-section {
	margin-bottom: 30px;
}

.project-item {
    margin-bottom: 20px;
    padding: 25px;
    border-left: 5px solid #3498db;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
}

.project-item:hover::before {
    left: 100%;
    transition: left 0.2s;
}

.project-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-left-color: #2980b9;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-logo {
    width: 120px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
}

.project-content {
    flex: 1;
}

.project-title {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.project-link {
	color: #3498db;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.project-link:hover {
	color: #2980b9;
	text-decoration: none;
}

.project-link::after {
	content: '→';
	margin-left: 5px;
	transition: all 0.3s ease;
}

.project-link:hover::after {
	margin-left: 10px;
}

.badges {
	text-align: center;
	margin: 15px 0 20px 0;
	animation: fadeInUp 1s ease-out;
	animation-delay: 0.5s;
	animation-fill-mode: both;
}

.badges img {
	margin: 0;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.badges img:hover {
	transform: scale(1.1);
}

.badge {
	display: inline-block;
	padding: 8px 16px;
	margin: 0 5px;
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
}

.badge:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
}

th, td {
	border: 1px solid #e1e8ed;
	padding: 15px;
	text-align: left;
	transition: all 0.3s ease;
}

th {
	background: #3498db;
	color: white;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9em;
	letter-spacing: 0.5px;
}

tr:nth-child(even) {
	background-color: #f8f9fa;
}

tr:hover {
	background-color: #e8f4fd;
	transform: scale(1.01);
}

.footer-link {
	text-align: center;
	margin-top: 30px;
	padding: 15px;
	background: #3498db;
	border-radius: 8px;
	color: white;
}

.footer-link a {
	color: white;
	font-weight: 600;
	text-decoration: none;
}

.footer-link a:hover {
	text-decoration: underline;
}

p {
	margin-bottom: 15px;
	color: #555;
}

.intro-text {
	text-align: center;
	font-size: 1.1em;
	color: #666;
	margin-bottom: 15px;
	font-style: italic;
	animation: fadeInUp 1s ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.month {
	font-weight: bold;
	color: #3498db;
	margin-right: 10px;
}

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

details {
	margin-bottom: 30px;
	animation: fadeInUp 1s ease-out;
	animation-delay: 0.2s;
	animation-fill-mode: both;
}
summary {
    cursor: pointer;
    font-size: 1.6em;
    color: #34495e;
    border-bottom: 3px solid #3498db;
    padding-bottom: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

summary:hover {
	color: #2980b9;
	border-bottom-color: #2980b9;
}

summary::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 80px;
	height: 3px;
	background: #3498db;
}

summary h2 {
	margin: 0;
	border: none;
	padding: 0;
	position: static;
	display: inline;
}

.hidden {
	display: none;
	visibility: hidden;
	height: 0;
	width: 0;
	overflow: hidden;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* WebKit scrollbar (Chrome, Safari, Edge) 
::-webkit-scrollbar {
	width: 18px;
	height: 18px;
}

::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.03);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #a3c9ff, #6aa6ff);
	border-radius: 10px;
	border: 4px solid rgba(255,255,255,0.8);
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #7fb7ff, #4f95ff);
}

/* Firefox scrollbar
* {
	scrollbar-width: thin;
	scrollbar-color: #6aa6ff rgba(0,0,0,0.03);
}*/