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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #000000, #111827, #000000);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.background-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-blob-1 {
    top: -160px;
    right: -160px;
    width: 320px;
    height: 320px;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

.bg-blob-2 {
    bottom: -160px;
    left: -160px;
    width: 320px;
    height: 320px;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
    animation-delay: 1s;
}

.bg-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.05), rgba(236, 72, 153, 0.05));
    animation-delay: 0.5s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Mouse Follower */
.mouse-follower {
    position: fixed;
    width: 384px;
    height: 384px;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    transition: all 1s ease-out;
}

/* Navigation */
.navigation {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, rgb(96, 165, 250), rgb(168, 85, 247));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.icon-button {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.icon-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 10;
    padding: 5rem 1.5rem;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, rgb(191, 219, 254), rgb(191, 219, 254));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-title-gradient {
    background: linear-gradient(to right, rgb(96, 165, 250), rgb(168, 85, 247), rgb(244, 114, 182));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Signpost Grid */
.signpost-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .signpost-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .signpost-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.signpost-card {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    transition: all 0.5s;
    cursor: pointer;
}

.signpost-card:hover {
    border-color: rgba(75, 85, 99, 0.7);
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.5);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    padding: 2px;
    transition: all 0.3s;
}

.signpost-card:hover .icon-circle {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.gradient-blue {
    background: linear-gradient(to right, rgb(96, 165, 250), rgb(34, 211, 238));
}

.gradient-purple {
    background: linear-gradient(to right, rgb(168, 85, 247), rgb(244, 114, 182));
}

.gradient-green {
    background: linear-gradient(to right, rgb(74, 222, 128), rgb(16, 185, 129));
}

.gradient-orange {
    background: linear-gradient(to right, rgb(251, 146, 60), rgb(239, 68, 68));
}

.icon-inner {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.signpost-card:hover .icon-inner {
    background: #1f2937;
}

.icon-inner svg {
    color: #fff;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-description {
    color: rgb(156, 163, 175);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.signpost-card:hover .card-description {
    color: rgb(209, 213, 219);
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: rgb(209, 213, 219);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.card-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.signpost-card:hover .card-button {
    transform: translateX(4px);
}

/* Content Sections */
.content-section {
    position: relative;
    z-index: 10;
    padding: 5rem 1.5rem;
}

.content-container {
    max-width: 56rem;
    margin: 0 auto;
}

.content-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    padding: 2rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.gradient-blue-purple {
    background: linear-gradient(to right, rgb(96, 165, 250), rgb(168, 85, 247));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-purple-pink {
    background: linear-gradient(to right, rgb(168, 85, 247), rgb(244, 114, 182));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-orange-red {
    background: linear-gradient(to right, rgb(251, 146, 60), rgb(239, 68, 68));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-text {
    color: rgb(209, 213, 219);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

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

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

/* Projects Section */
.projects-container {
    max-width: 1280px;
    margin: 0 auto;
}

.projects-container .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    transition: all 0.5s;
}

.project-card:hover {
    border-color: rgba(75, 85, 99, 0.7);
    transform: scale(1.05);
}

.project-image {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.2), rgba(88, 28, 135, 0.2));
    overflow: hidden;
	
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s;
}

.project-image-cs2-investment {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.2), rgba(88, 28, 135, 0.2));
    overflow: hidden;
	
}

.project-image-cs2-investment img {
    width: 100%;
    height: 100%;
    object-fit: cover ;
    opacity: 0.6;
    transition: opacity 0.5s;
}

.project-card:hover .project-image img {
    opacity: 0.8;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.project-description {
    color: rgb(156, 163, 175);
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    color: rgb(209, 213, 219);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: rgb(209, 213, 219);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.project-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Contact Section */
.contact-card {
    text-align: center;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, rgb(37, 99, 235), rgb(126, 34, 206));
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.primary-button:hover {
    background: linear-gradient(to right, rgb(29, 78, 216), rgb(107, 33, 168));
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(75, 85, 99, 0.5);
    color: rgb(209, 213, 219);
    cursor: pointer;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(31, 41, 55, 0.5);
}

.footer-text {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    color: rgb(107, 114, 128);
}
