/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('fonts.css');

body {
    font-family: 'Teko', sans-serif;
    line-height: 1.6;
    color: #e6e6e6;
    background-color: #000;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 20px rgba(128, 0, 255, 0.3);
    border-bottom: 2px solid #8000ff;
}

header h1 {
    margin: 0;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(128, 0, 255, 0.7), 0 0 20px rgba(180, 100, 255, 0.5);
    font-size: 2.8rem;
}

nav {
    float: right;
    margin-top: 10px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(to right, #8000ff, #b464ff);
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover {
    color: #b464ff;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.5);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #b464ff;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.7);
}

nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(40, 0, 60, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(40, 0, 60, 0.3) 100%);
    z-index: 1;
}


.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.minecraft-skin {
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

#minecraft-avatar {
    max-height: 350px;
    filter: drop-shadow(0 0 10px rgba(128, 0, 255, 0.7));
}

.hero-text {
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .minecraft-skin {
        margin-bottom: 20px;
    }
    
    #minecraft-avatar {
        max-height: 250px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.hero h2 {
    font-size: 4.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(128, 0, 255, 0.7), 0 0 20px rgba(180, 100, 255, 0.5);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: logo-glow 2s ease-in-out infinite alternate;
    font-family: 'Teko', sans-serif;
    -webkit-text-stroke: 1px #8000ff;
}

@keyframes logo-glow {
    from { text-shadow: 0 0 10px rgba(128, 0, 255, 0.7), 0 0 20px rgba(180, 100, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(128, 0, 255, 0.9), 0 0 30px rgba(180, 100, 255, 0.7); }
}

.hero h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #8000ff, #b464ff, #8000ff, transparent);
}

.hero p {
    font-size: 1.8em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    font-family: 'Teko', sans-serif;
}

.btn {
    display: inline-block;
    background: linear-gradient(to bottom, #8000ff, #6000c0);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 15px rgba(128, 0, 255, 0.5);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 0 10px;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(128, 0, 255, 0.7);
}

.btn:hover::before {
    left: 100%;
}

.btn.alt {
    background: linear-gradient(to bottom, #b464ff, #9040e0);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 15px rgba(180, 100, 255, 0.5);
}

.btn:hover {    
    background: #555;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #000;
    position: relative;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(40, 0, 60, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(40, 0, 60, 0.3) 100%);
    z-index: -1;
}

.feature-box {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 15px rgba(128, 0, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #8000ff;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        rgba(180, 100, 255, 0.1) 50%, 
        rgba(128, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.4);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box h3 {
    color: #b464ff;
    margin-bottom: 15px;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.3);
}

.feature-box h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #8000ff, #b464ff);
}

.feature-box p {
    color: #ccc;
    font-size: 1.2em;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(40, 0, 60, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(40, 0, 60, 0.3) 100%);
    z-index: -1;
}

.page-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 3em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(128, 0, 255, 0.7);
    display: inline-block;
}

.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8000ff, #b464ff, #8000ff);
    box-shadow: 0 0 10px rgba(128, 0, 255, 0.5);
}

.page-content h3 {
    color: #b464ff;
    margin: 30px 0 20px;
    font-size: 2em;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.3);
}

.page-content p {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #ddd;
}

/* Projects/Services */
.service {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2), 0 0 15px rgba(128, 0, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #8000ff;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        rgba(180, 100, 255, 0.1) 50%, 
        rgba(128, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.3);
}

.service:hover::before {
    opacity: 1;
}

.service h3 {
    color: #b464ff;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 2em;
    position: relative;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.3);
}

.service h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #8000ff, #b464ff);
}

.service p {
    color: #ddd;
    font-size: 1.2em;
}

/* Contact Styles */
.contact-info {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-left: 4px solid #8000ff;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        rgba(180, 100, 255, 0.1) 50%, 
        rgba(128, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-info ul {
    list-style: none;
    margin: 20px 0;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #ddd;
    position: relative;
    padding-left: 30px;
}

.contact-info ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #b464ff;
    font-size: 1.1em;
}

.contact-info ul li a {
    color: #b464ff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.contact-info ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #8000ff, #b464ff);
    transition: width 0.3s;
}

.contact-info ul li a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.5);
}

.contact-info ul li a:hover::after {
    width: 100%;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: #777;
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid #8000ff;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #8000ff, #b464ff, #8000ff);
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.7);
}

footer p {
    margin: 20px 0 0;
    font-size: 1.1em;
    color: #aaa;
}

/* Social Media Icons */
.social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons li {
    display: inline-block;
    margin: 0 12px;
}

.social-icons a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #333, #222);
    color: #b464ff;
    text-align: center;
    font-size: 1.3em;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(128, 0, 255, 0.2);
    border: 2px solid #8000ff;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 255, 0.3), transparent);
    transition: all 0.6s;
}

.social-icons a:hover {
    background: linear-gradient(to bottom, #8000ff, #6000c0);
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(128, 0, 255, 0.5);
}

.social-icons a:hover::before {
    left: 100%;
}

/* Gaming Profiles */
.game-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.game-profile {
    flex: 1;
    min-width: 300px;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border-left: 4px solid #8000ff;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.game-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        rgba(180, 100, 255, 0.1) 50%, 
        rgba(128, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.game-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 0 30px rgba(128, 0, 255, 0.4);
}

.game-profile:hover::before {
    opacity: 1;
}

.game-profile-header {
    padding: 15px;
    background: linear-gradient(to right, #6000c0, #8000ff);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.game-profile-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #8000ff, #b464ff, #8000ff);
    box-shadow: 0 0 10px rgba(128, 0, 255, 0.7);
}

.game-profile-header h3 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.game-profile-header h3 i {
    margin-right: 10px;
    font-size: 0.9em;
}

.game-profile-body {
    padding: 20px;
    position: relative;
}

.game-profile-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    opacity: 0.03;
    pointer-events: none;
}

.guitar-profile .game-profile-body::before {
    background-image: 
        linear-gradient(to right, transparent 20%, #333 20%, #333 22%, transparent 22%),
        linear-gradient(to right, transparent 40%, #333 40%, #333 42%, transparent 42%),
        linear-gradient(to right, transparent 60%, #333 60%, #333 62%, transparent 62%),
        linear-gradient(to right, transparent 80%, #333 80%, #333 82%, transparent 82%);
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
}

.minecraft-profile .game-profile-body::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect x="0" y="0" width="8" height="8" fill="%23333"/><rect x="8" y="8" width="8" height="8" fill="%23333"/></svg>');
}

.game-profile-body p {
    margin: 10px 0;
    color: #ddd;
    position: relative;
    z-index: 1;
    font-size: 1.2em;
}

.game-profile-body strong {
    color: #b464ff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(180, 100, 255, 0.3);
}

/* Mod Showcase */
.mod-showcase {
    margin: 40px 0;
}

.mod-card {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border-left: 4px solid #8000ff;
}

.mod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        rgba(180, 100, 255, 0.1) 50%, 
        rgba(128, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 0 30px rgba(128, 0, 255, 0.3);
}

.mod-card:hover::before {
    opacity: 1;
}

.mod-card-header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-bottom: 2px solid #8000ff;
    position: relative;
    overflow: hidden;
}

.mod-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #8000ff, #b464ff, #8000ff);
    box-shadow: 0 0 10px rgba(128, 0, 255, 0.7);
}

.mod-card-header h3 {
    margin: 0;
    color: #fff;
    font-size: 2.2em;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(128, 0, 255, 0.7);
}

.mod-card-body {
    padding: 25px;
}

.mod-card-body p {
    margin-bottom: 15px;
    color: #ddd;
    font-size: 1.2em;
}

.mod-card-body ul {
    margin: 20px 0;
    padding-left: 20px;
    color: #ddd;
    font-size: 1.2em;
}

.mod-card-body ul li {
    margin-bottom: 10px;
    position: relative;
}

.mod-card-body ul li::before {
    content: '★';
    position: absolute;
    left: -20px;
    color: #b464ff;
}

.mod-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(128, 0, 255, 0.3);
}

.mod-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #bbb;
    font-size: 1.1em;
}

.mod-meta-item strong {
    margin-right: 8px;
    color: #b464ff;
    text-shadow: 0 0 5px rgba(180, 100, 255, 0.3);
}

.download-links {
    margin-top: 25px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(to bottom, #333, #222);
    color: #b464ff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 2px solid #8000ff;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 15px rgba(128, 0, 255, 0.2);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 255, 0.3), transparent);
    transition: all 0.6s;
}

.download-btn:hover {
    background: linear-gradient(to bottom, #8000ff, #6000c0);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(128, 0, 255, 0.4);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn i {
    margin-right: 8px;
}

/* Team Member and Social Links Styles */
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.team-member {
    flex: 1;
    min-width: 300px;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border-left: 4px solid #8000ff;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 0 30px rgba(128, 0, 255, 0.4);
}

.team-member h4 {
    color: #b464ff;
    font-size: 1.6em;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.3);
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.team-member h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #8000ff, #b464ff, #8000ff);
}

.social-links {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.2);
    border-left: 4px solid #8000ff;
    position: relative;
    overflow: hidden;
}

.social-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        rgba(180, 100, 255, 0.1) 50%, 
        rgba(128, 0, 255, 0.1) 100%);
    opacity: 0.3;
}

.social-links p {
    position: relative;
    z-index: 1;
}

.social-links a {
    color: #b464ff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 2px;
}

.social-links a:hover {
    color: #d8b4ff;
    text-shadow: 0 0 10px rgba(180, 100, 255, 0.7);
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #8000ff, #b464ff);
    transition: width 0.3s;
}

.social-links a:hover::after {
    width: 100%;
}

.about-intro {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(128, 0, 255, 0.2);
    border-left: 4px solid #8000ff;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        rgba(180, 100, 255, 0.1) 50%, 
        rgba(128, 0, 255, 0.1) 100%);
    opacity: 0.3;
}

.about-intro p {
    position: relative;
    z-index: 1;
    font-size: 1.4em;
    margin-bottom: 0;
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeInUp 0.6s ease-out;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Guitar Hero Note Effects */
.glow-effect {
    animation: glow-animation 3s ease-in-out infinite alternate;
}

@keyframes glow-animation {
    0% { text-shadow: 0 0 10px rgba(128, 0, 255, 0.3), 0 0 20px rgba(180, 100, 255, 0.2); }
    100% { text-shadow: 0 0 20px rgba(128, 0, 255, 0.6), 0 0 30px rgba(180, 100, 255, 0.4); }
}

/* Guitar Hero Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.5s ease-in-out;
}

/* Animated features */
.animated {
    animation: feature-appear 0.6s ease-out forwards;
}

@keyframes feature-appear {
    from { 
        transform: translateY(20px);
        opacity: 0.7;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}
