body {
    position: relative;
    margin: 0;
    overflow: hidden;
    font-family: "brandon-grotesque", sans-serif;
    color: white;
}

* {
    user-select: none;
    -webkit-user-drag: none;
    box-sizing: border-box;
}

.email-link {
    color: #00aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.email-link:hover {
    color: #ffffff;
}

.email {
    margin-bottom: 20px;
}

.select {
    cursor: pointer;
    user-select: all;
}

.intro-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

.margin-left {
    margin-left: 20px;
}

.title {
    font-weight: 300;
    font-size: 3em;
    margin: 0;
}

.subtitle {
    font-weight: 300;
    font-size: 1.5em;
    margin: 0 0 1em;
}

.button {
    position: relative;
    cursor: pointer;
    display: inline-block;
    font-family: "brandon-grotesque", sans-serif;
    text-transform: uppercase;
    min-width: 200px;
    margin-top: 30px;
}

.button:hover .border {
    box-shadow: 0px 0px 10px 0px white;
}

.button:hover .border .left-plane,
.button:hover .border .right-plane {
    transform: translateX(0%);
}

.button:hover .text {
    color: #121212;
}

.button .border {
    border: 1px solid white;
    transform: skewX(-20deg);
    height: 32px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    transition: 0.1s ease-out;
}

.button .border .left-plane,
.button .border .right-plane {
    position: absolute;
    background: white;
    height: 32px;
    width: 100px;
    transition: 0.15s ease-out;
}

.button .border .left-plane {
    left: 0;
    transform: translateX(-100%);
}

.button .border .right-plane {
    right: 0;
    transform: translateX(100%);
}

.button .text {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.15s ease-out;
}

.x-mark {
    right: 10px;
    top: 10px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 9;
}

.x-mark:hover .right {
    transform: rotate(-45deg) scaleY(1.2);
}

.x-mark:hover .left {
    transform: rotate(45deg) scaleY(1.2);
}

.x-mark .container {
    position: relative;
    width: 20px;
    height: 20px;
}

.x-mark .left,
.x-mark .right {
    width: 2px;
    height: 20px;
    background: white;
    position: absolute;
    border-radius: 3px;
    transition: 0.15s ease-out;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.x-mark .right {
    transform: rotate(-45deg);
}

.x-mark .left {
    transform: rotate(45deg);
}

.sky-container, .moon-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 10;
}

.back-button h3 {
    font-weight: 300;
    font-size: 1.5em;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.content-wrapper {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card-content {
    padding: 20px;
}

.project-card h4 {
    font-size: 1.4em;
    margin: 0 0 10px;
    color: #ffffff;
    font-weight: 500;
}

.project-card p {
    font-size: 0.9em;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.project-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.about-us,
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us:hover,
.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-us h4,
.contact-info h4 {
    margin: 0 0 15px;
    font-size: 1.2em;
    color: #ffffff;
}

.about-us p,
.contact-info p {
    margin: 0 0 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-us ul {
    list-style-type: none;
    padding-left: 0;
}

.about-us ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.about-us ul li:before {
    content: "•";
    color: #00aec0;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #00aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.crypto-addresses {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
}

.crypto-addresses p {
    font-size: 0.8em;
    word-break: break-all;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
}

.contact-form .g-recaptcha {
    margin-bottom: 15px;
}
