/* Existing styles from original style.css */
***{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;background:linear-gradient(135deg,#0a0a0a 0%,#1a1a1a 50%,#111 100%);color:#e0e0e0;overflow-x:hidden}
body.splash-active{overflow:hidden}
body.splash-active .main-content{display:none !important}
body.splash-active .topbar{display:none !important}
.topbar{position:fixed;top:0;left:0;width:100vw;height:60px;background:rgba(15,15,15,0.95);backdrop-filter:blur(10px);border-bottom:1px solid rgba(34,197,94,0.3);z-index:999;display:flex;align-items:center;justify-content:space-between;padding:0 2rem;transition:all 0.3s ease;box-sizing:border-box}
.nav-logo{font-size:1.5rem;font-weight:700;color:#22c55e;text-shadow:0 0 10px rgba(34,197,94,0.5);cursor:pointer}
.nav-menu{display:flex;gap:2rem;list-style:none;align-items:center}
.nav-menu a{color:#e0e0e0;text-decoration:none;font-weight:500;transition:color 0.3s ease;position:relative}
.nav-menu a:hover{color:#22c55e}
.nav-menu a.active{color:#22c55e}
.nav-menu a::after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:#22c55e;transition:width 0.3s ease}
.nav-menu a:hover::after,.nav-menu a.active::after{width:100%}
.login-button{background:linear-gradient(45deg,#22c55e,#16a34a);color:white;border:none;border-radius:25px;padding:0.5rem 1.5rem;font-size:0.9rem;font-weight:600;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(34,197,94,0.3);overflow:hidden}
.login-button::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);transition:left 0.6s ease}
.login-button:hover::before{left:100%}
.login-button:hover{transform:translateY(-2px);box-shadow:0 6px 25px rgba(34,197,94,0.5)}

/* Main Content */
.main-content{min-height:100vh;padding-top:80px;opacity:0;transform:translateY(50px);transition:all 1s ease 0.5s}
.main-content.visible{opacity:1;transform:translateY(0)}

/* Main content visible by default on non-index pages */
body:not(.splash-active) .main-content{opacity:1;transform:translateY(0)}

/* Ensure topbar is visible on non-index pages */
body:not(.splash-active) .topbar{transform:translateY(0)}
.topbar.visible{transform:translateY(0)}

/* Software-specific styles */
/* Software Hero Section */
.software-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
}

.software-title {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 20px rgba(34, 197, 94, 0.5); }
    to { text-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 60px rgba(34, 197, 94, 0.4); }
}

.software-subtitle {
    font-size: 1.5rem;
    color: #a3a3a3;
    margin-bottom: 2rem;
}

.software-description {
    font-size: 1.1rem;
    color: #d4d4d4;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Software Categories */
.software-categories {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.category-title {
    color: #22c55e;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.software-category {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.7));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.software-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.software-category:hover::before {
    left: 100%;
}

.software-category:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-name {
    color: #e0e0e0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-desc {
    color: #a3a3a3;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.category-projects {
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Featured Software Section */
.featured-software {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.featured-title {
    color: #22c55e;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.software-item {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.7));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.software-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.software-item:hover::before {
    left: 100%;
}

.software-item:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);
}

.software-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.software-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-live {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-beta {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.status-dev {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.software-name {
    color: #e0e0e0;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.software-desc {
    color: #a3a3a3;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.software-features {
    margin-bottom: 1.5rem;
}

.features-title {
    color: #22c55e;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #d4d4d4;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.software-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(60, 60, 60, 0.5);
    color: #d4d4d4;
    border-radius: 12px;
    font-size: 0.8rem;
}

.software-actions {
    display: flex;
    gap: 1rem;
}

.action-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.button-primary {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
}

.button-secondary {
    background: rgba(60, 60, 60, 0.5);
    color: #e0e0e0;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.button-secondary:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.5);
}

/* Software Stats Section */
.software-stats {
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem auto;
    max-width: 1400px;
    text-align: center;
}

.stats-title {
    color: #22c55e;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    color: #22c55e;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.stat-label {
    color: #a3a3a3;
    font-size: 1rem;
}

/* Software Modal Styles */
.software-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.software-modal.active {
    opacity: 1;
    visibility: visible;
}

.software-modal .modal-content {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.9));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.software-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-title {
    color: #22c55e;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-subtitle {
    color: #a3a3a3;
    font-size: 1.2rem;
}

.modal-text {
    color: #d4d4d4;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-text p {
    margin-bottom: 1rem;
}

/* Gaming-specific styles */
/* Gaming Journal Hero */
.journal-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
}

.journal-title {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.journal-subtitle {
    font-size: 1.5rem;
    color: #a3a3a3;
    margin-bottom: 2rem;
}

.journal-description {
    font-size: 1.1rem;
    color: #d4d4d4;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.journal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button-primary {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
}

.button-secondary {
    background: rgba(60, 60, 60, 0.5);
    color: #e0e0e0;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.button-secondary:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.5);
}

/* Journal Layout */
.journal-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

/* Main Journal Feed */
.journal-feed {
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.feed-title {
    color: #22c55e;
    font-size: 1.8rem;
    font-weight: 600;
}

.new-entry-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-entry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* Journal Entries */
.journal-entry {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.6));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journal-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.journal-entry:hover::before {
    left: 100%;
}

.journal-entry:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.entry-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.95rem;
}

.entry-time {
    color: #a3a3a3;
    font-size: 0.8rem;
}

.entry-game {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.entry-content {
    margin-bottom: 1rem;
}

.entry-title {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.entry-text {
    color: #d4d4d4;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.entry-achievement {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.achievement-title {
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement-desc {
    color: #d4d4d4;
    font-size: 0.85rem;
}

.entry-challenge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.challenge-title {
    color: #a855f7;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenge-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #8b5cf6);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    color: #a855f7;
    font-size: 0.8rem;
    font-weight: 600;
}

.entry-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.action-btn {
    background: none;
    border: none;
    color: #a3a3a3;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.action-btn:hover {
    color: #22c55e;
}

.action-btn.liked {
    color: #22c55e;
}

/* Sidebar */
.journal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.sidebar-title {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Friends List */
.friend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.friend-item:hover {
    background: rgba(34, 197, 94, 0.1);
}

.friend-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.8rem;
}

.friend-info {
    flex: 1;
}

.friend-name {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.friend-status {
    color: #a3a3a3;
    font-size: 0.75rem;
}

.friend-online {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

/* Active Challenges */
.member-challenge-group {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(60, 60, 60, 0.3);
    border-radius: 12px;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.5);
}

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.member-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.member-name {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.95rem;
}

.challenge-count {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.challenge-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.challenge-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}

.challenge-item:last-child {
    margin-bottom: 0;
}

.challenge-name {
    color: #a855f7;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.challenge-game {
    color: #a3a3a3;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

/* New Entry Form */
.entry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: #e0e0e0;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.8rem;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.5);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.entry-type-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    background: rgba(60, 60, 60, 0.5);
    border: none;
    border-radius: 8px;
    color: #a3a3a3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
}

.submit-btn {
    padding: 1rem;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* Shared components from original style.css below... */
.splash-screen{position:fixed;top:0;left:0;width:100%;height:100vh;background:#0a0a0a;display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:1000;transition:transform 2s cubic-bezier(0.165,0.84,0.44,1);overflow:hidden}
.splash-screen::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:radial-gradient(ellipse at center,rgba(26,77,26,0.4) 0%,rgba(10,10,10,0.9) 40%,transparent 100%);z-index:1;pointer-events:none}
.splash-screen::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(45deg,transparent 48%,rgba(34,197,94,0.03) 49%,rgba(34,197,94,0.03) 51%,transparent 52%),linear-gradient(-45deg,transparent 48%,rgba(34,197,94,0.03) 49%,rgba(34,197,94,0.03) 51%,transparent 52%);background-size:30px 30px;animation:gridMove 20s linear infinite;opacity:0.5}
@keyframes gridMove{0%{transform:translate(0,0)}100%{transform:translate(30px,30px)}}
.splash-screen.hidden{transform:translateY(-100%)}
.particles-canvas{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}
.bg-element{position:absolute;border-radius:50%;opacity:0.1;animation:float 6s ease-in-out infinite}
.bg-element:nth-child(1){width:200px;height:200px;background:radial-gradient(circle,rgba(34,197,94,0.3),transparent);top:20%;left:10%;animation-delay:0s}
.bg-element:nth-child(2){width:150px;height:150px;background:radial-gradient(circle,rgba(34,197,94,0.2),transparent);top:60%;right:15%;animation-delay:2s}
.bg-element:nth-child(3){width:100px;height:100px;background:radial-gradient(circle,rgba(34,197,94,0.25),transparent);bottom:20%;left:20%;animation-delay:4s}
@keyframes float{0%,100%{transform:translateY(0px) scale(1)}50%{transform:translateY(-20px) scale(1.1)}}
.logo-container{position:relative;margin-bottom:2rem}
.logo{font-size:5rem;font-weight:900;color:#22c55e;text-shadow:0 0 30px rgba(34,197,94,0.8);animation:logoGlow 3s ease-in-out infinite alternate;letter-spacing:3px;position:relative;z-index:2}
.logo::before{content:'GreenShadow';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(45deg,#22c55e,#16a34a,#15803d);background-size:300% 300%;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:gradientShift 4s ease-in-out infinite;z-index:1}
.logo-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:120%;height:120%;background:radial-gradient(circle,rgba(34,197,94,0.3),transparent 70%);animation:pulse 2s ease-in-out infinite alternate;z-index:0}
@keyframes logoGlow{from{text-shadow:0 0 30px rgba(34,197,94,0.8),0 0 60px rgba(34,197,94,0.4)}to{text-shadow:0 0 50px rgba(34,197,94,1),0 0 80px rgba(34,197,94,0.6),0 0 120px rgba(34,197,94,0.3)}}
@keyframes gradientShift{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
@keyframes pulse{0%{transform:translate(-50%,-50%) scale(1);opacity:0.3}100%{transform:translate(-50%,-50%) scale(1.2);opacity:0.1}}
.welcome-text{font-size:1.5rem;color:#a3a3a3;text-align:center;margin-bottom:3rem;max-width:600px;line-height:1.6;animation:textReveal 2s ease-out 0.5s both;position:relative}
@keyframes textReveal{0%{opacity:0;transform:translateY(30px);filter:blur(10px)}100%{opacity:1;transform:translateY(0);filter:blur(0px)}}
.start-button{padding:1.2rem 3.5rem;background:linear-gradient(45deg,#22c55e,#16a34a);color:white;border:none;border-radius:50px;font-size:1.2rem;font-weight:600;cursor:pointer;transition:all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);box-shadow:0 8px 32px rgba(34,197,94,0.4);position:relative;overflow:hidden;animation:buttonEntrance 2s ease-out 1s both}
.start-button::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);transition:left 0.6s ease}
.start-button:hover::before{left:100%}
.start-button:hover{transform:translateY(-5px) scale(1.05);box-shadow:0 15px 50px rgba(34,197,94,0.6)}
.start-button:active{transform:translateY(-2px) scale(1.02)}
@keyframes buttonEntrance{0%{opacity:0;transform:translateY(50px) scale(0.8)}60%{transform:translateY(-10px) scale(1.1)}100%{opacity:1;transform:translateY(0) scale(1)}}
.loading-indicator{position:absolute;bottom:10%;left:50%;transform:translateX(-50%);display:flex;gap:5px;opacity:0;animation:loadingFadeIn 2s ease-out 2s both}
.loading-dot{width:8px;height:8px;background:#22c55e;border-radius:50%;animation:loadingBounce 1.4s ease-in-out infinite both}
.loading-dot:nth-child(1){animation-delay:-0.32s}
.loading-dot:nth-child(2){animation-delay:-0.16s}
.loading-dot:nth-child(3){animation-delay:0s}
@keyframes loadingFadeIn{0%{opacity:0}100%{opacity:0.7}}
@keyframes loadingBounce{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}
.scanlines{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(transparent 50%,rgba(34,197,94,0.02) 50%);background-size:100% 4px;animation:scanlines 2s linear infinite;pointer-events:none;opacity:0.3}
@keyframes scanlines{0%{background-position:0 0}100%{background-position:0 4px}}
.mouse-trail{position:absolute;width:20px;height:20px;background:radial-gradient(circle,rgba(34,197,94,0.3),transparent);border-radius:50%;pointer-events:none;animation:trailFade 1s ease-out forwards}
@keyframes trailFade{0%{transform:scale(1);opacity:0.6}100%{transform:scale(3);opacity:0}}
.hidden-name{position:absolute;color:rgba(34,197,94,0.9);font-size:1.2rem;font-weight:700;text-shadow:0 0 15px rgba(34,197,94,0.8),0 0 30px rgba(34,197,94,0.4);opacity:0;transition:all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);pointer-events:none;z-index:1001;user-select:none;letter-spacing:2px;transform:scale(0.8) rotate(-5deg);background:linear-gradient(45deg,rgba(34,197,94,0.1),rgba(16,163,74,0.1));padding:0.5rem 1rem;border-radius:25px;border:1px solid rgba(34,197,94,0.3);backdrop-filter:blur(10px);animation:hiddenFloat 4s ease-in-out infinite}
.hidden-name.visible{opacity:1;transform:scale(1.1) rotate(0deg);text-shadow:0 0 20px rgba(34,197,94,1),0 0 40px rgba(34,197,94,0.6);border-color:rgba(34,197,94,0.8);animation:visiblePulse 2s ease-in-out infinite}
.hidden-name::before{content:'';position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;background:linear-gradient(45deg,rgba(34,197,94,0.5),rgba(16,163,74,0.3),rgba(21,128,61,0.5));border-radius:25px;z-index:-1;opacity:0;transition:opacity 0.3s ease;animation:rotateGlow 3s linear infinite}
.hidden-name.visible::before{opacity:1}
.hidden-name::after{content:'✦';position:absolute;top:-10px;right:-10px;color:rgba(34,197,94,0.8);font-size:0.8rem;animation:sparkle 1.5s ease-in-out infinite;opacity:0;transition:opacity 0.3s ease}
.hidden-name.visible::after{opacity:1}
#name1{animation-delay:0s}
#name2{animation-delay:1.3s}
#name3{animation-delay:2.6s}
@keyframes hiddenFloat{0%,100%{transform:scale(0.8) rotate(-5deg) translateY(0px);filter:blur(1px)}50%{transform:scale(0.85) rotate(-3deg) translateY(-8px);filter:blur(0.5px)}}
@keyframes visiblePulse{0%,100%{transform:scale(1.1) rotate(0deg);text-shadow:0 0 20px rgba(34,197,94,1),0 0 40px rgba(34,197,94,0.6)}50%{transform:scale(1.2) rotate(1deg);text-shadow:0 0 30px rgba(34,197,94,1),0 0 60px rgba(34,197,94,0.8)}}
@keyframes rotateGlow{0%{transform:rotate(0deg);background:linear-gradient(45deg,rgba(34,197,94,0.5),rgba(16,163,74,0.3),rgba(21,128,61,0.5))}33%{background:linear-gradient(45deg,rgba(16,163,74,0.5),rgba(21,128,61,0.3),rgba(34,197,94,0.5))}66%{background:linear-gradient(45deg,rgba(21,128,61,0.5),rgba(34,197,94,0.3),rgba(16,163,74,0.5))}100%{transform:rotate(360deg);background:linear-gradient(45deg,rgba(34,197,94,0.5),rgba(16,163,74,0.3),rgba(21,128,61,0.5))}}
@keyframes sparkle{0%,100%{transform:scale(1) rotate(0deg);opacity:0.8}25%{transform:scale(1.3) rotate(90deg);opacity:1}50%{transform:scale(0.8) rotate(180deg);opacity:0.6}75%{transform:scale(1.1) rotate(270deg);opacity:0.9}}

.hero-section{text-align:center;padding:4rem 2rem;background:linear-gradient(45deg,rgba(34,197,94,0.1),rgba(0,0,0,0.3));margin-bottom:3rem}
.hero-title{font-size:4rem;color:#22c55e;margin-bottom:1rem;text-shadow:0 0 20px rgba(34,197,94,0.5)}
.hero-subtitle{font-size:1.5rem;color:#a3a3a3;margin-bottom:2rem}
.hero-description{font-size:1.1rem;color:#d4d4d4;max-width:800px;margin:0 auto}
.content-grid{max-width:1400px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:2fr 1fr;gap:3rem;margin-bottom:4rem}
.news-section{background:rgba(30,30,30,0.8);border:1px solid rgba(34,197,94,0.2);border-radius:20px;padding:2rem;backdrop-filter:blur(10px)}
.section-title{color:#22c55e;font-size:2rem;margin-bottom:2rem;display:flex;align-items:center;gap:0.5rem}
.news-item{background:rgba(20,20,20,0.6);border:1px solid rgba(60,60,60,0.5);border-radius:15px;padding:1.5rem;margin-bottom:1.5rem;transition:all 0.3s ease;cursor:pointer}
.news-item:hover{transform:translateY(-5px);border-color:rgba(34,197,94,0.4);box-shadow:0 10px 30px rgba(34,197,94,0.2)}
.news-date{color:#22c55e;font-size:0.9rem;font-weight:600}
.news-title{color:#e0e0e0;font-size:1.2rem;font-weight:600;margin:0.5rem 0}
.news-excerpt{color:#a3a3a3;font-size:0.95rem;line-height:1.5}
.categories-section{display:flex;flex-direction:column;gap:2rem}
.category-card{background:linear-gradient(135deg,rgba(30,30,30,0.9),rgba(40,40,40,0.6));border:1px solid rgba(34,197,94,0.2);border-radius:20px;padding:2rem;text-align:center;transition:all 0.3s ease;cursor:pointer;position:relative;overflow:hidden}
.category-card::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(34,197,94,0.1),transparent);transition:left 0.6s ease}
.category-card:hover::before{left:100%}
.category-card:hover{transform:translateY(-10px);border-color:rgba(34,197,94,0.5);box-shadow:0 20px 40px rgba(34,197,94,0.3)}
.category-icon{font-size:3rem;margin-bottom:1rem}
.category-title{color:#22c55e;font-size:1.3rem;font-weight:600;margin-bottom:0.5rem}
.category-desc{color:#a3a3a3;font-size:0.9rem}
.featured-section{max-width:1400px;margin:0 auto;padding:0 2rem 4rem}
.projects-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem;margin-top:2rem}
.project-card{background:linear-gradient(135deg,rgba(25,25,25,0.9),rgba(35,35,35,0.7));border:1px solid rgba(34,197,94,0.2);border-radius:20px;padding:2rem;transition:all 0.3s ease;cursor:pointer}
.project-card:hover{transform:translateY(-8px);border-color:rgba(34,197,94,0.4);box-shadow:0 15px 35px rgba(34,197,94,0.25)}
.project-status{display:inline-block;padding:0.3rem 0.8rem;background:rgba(34,197,94,0.2);color:#22c55e;border-radius:15px;font-size:0.8rem;font-weight:600;margin-bottom:1rem}
.project-title{color:#e0e0e0;font-size:1.4rem;font-weight:600;margin-bottom:1rem}
.project-desc{color:#a3a3a3;line-height:1.5;margin-bottom:1.5rem}
.project-tech{display:flex;flex-wrap:wrap;gap:0.5rem}
.news-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.8);backdrop-filter:blur(10px);display:flex;justify-content:center;align-items:center;z-index:2000;opacity:0;visibility:hidden;transition:all 0.3s ease}
.news-modal.active{opacity:1;visibility:visible}
.modal-content{background:linear-gradient(135deg,rgba(25,25,25,0.95),rgba(35,35,35,0.9));border:1px solid rgba(34,197,94,0.3);border-radius:20px;padding:2.5rem;max-width:800px;max-height:80vh;overflow-y:auto;position:relative;transform:translateY(50px);transition:transform 0.3s ease;backdrop-filter:blur(20px);box-shadow:0 20px 60px rgba(0,0,0,0.5)}
.news-modal.active .modal-content{transform:translateY(0)}
.modal-date{color:#22c55e;font-size:1rem;font-weight:600;margin-bottom:1rem}
.modal-tags{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:2rem}
.modal-tag{padding:0.5rem 1rem;background:rgba(34,197,94,0.2);color:#22c55e;border-radius:15px;font-size:0.9rem;font-weight:500}
.login-modal-content{max-width:400px;text-align:center}
.login-title{color:#22c55e;font-size:2.5rem;font-weight:700;margin-bottom:1rem;text-shadow:0 0 10px rgba(34,197,94,0.5)}
.login-subtitle{color:#a3a3a3;font-size:1.1rem;margin-bottom:2.5rem;font-style:italic}
.login-form{text-align:left}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;color:#e0e0e0;font-size:0.9rem;font-weight:600;margin-bottom:0.5rem}
.form-group input{width:100%;padding:0.8rem;background:rgba(40,40,40,0.8);border:1px solid rgba(60,60,60,0.5);border-radius:8px;color:#e0e0e0;font-size:1rem;transition:all 0.3s ease}
.form-group input:focus{outline:none;border-color:#22c55e;box-shadow:0 0 0 2px rgba(34,197,94,0.2);background:rgba(50,50,50,0.9)}
.login-submit-button{width:100%;padding:1rem;background:linear-gradient(45deg,#22c55e,#16a34a);color:white;border:none;border-radius:8px;font-size:1.1rem;font-weight:600;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(34,197,94,0.3);margin-top:1rem}
.login-submit-button:hover{transform:translateY(-2px);box-shadow:0 6px 25px rgba(34,197,94,0.5)}
.login-submit-button:active{transform:translateY(0)}

/* Team-specific styles */
.team-section{padding:2rem 0;max-width:1400px;margin:0 auto}
.team-hero{text-align:center;padding:4rem 2rem;background:linear-gradient(45deg,rgba(34,197,94,0.1),rgba(0,0,0,0.3));border-radius:20px;margin-bottom:4rem}
.team-title{font-size:4rem;color:#22c55e;margin-bottom:1rem;text-shadow:0 0 20px rgba(34,197,94,0.5);animation:titleGlow 3s ease-in-out infinite alternate}
.team-subtitle{font-size:1.5rem;color:#a3a3a3;margin-bottom:2rem}
.team-description{font-size:1.1rem;color:#d4d4d4;max-width:800px;margin:0 auto;line-height:1.6}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;padding:0 2rem;margin-bottom:4rem}
.team-member{background:linear-gradient(135deg,rgba(25,25,25,0.9),rgba(35,35,35,0.7));border:1px solid rgba(34,197,94,0.2);border-radius:15px;padding:1.5rem;transition:all 0.3s ease;cursor:pointer;position:relative;overflow:hidden;text-align:center;display:flex;flex-direction:column;align-items:center}
.team-member::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(34,197,94,0.1),transparent);transition:left 0.6s ease}
.team-member:hover::before{left:100%}
.team-member:hover{transform:translateY(-5px);border-color:rgba(34,197,94,0.5);box-shadow:0 10px 25px rgba(34,197,94,0.3)}
.member-avatar{position:relative;width:70px;height:70px;margin-bottom:1rem;flex-shrink:0}
.avatar-placeholder{width:100%;height:100%;background:linear-gradient(45deg,#22c55e,#16a34a);border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 15px rgba(34,197,94,0.4)}
.avatar-initial{font-size:1.8rem;font-weight:700;color:white;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.member-status{position:absolute;bottom:5px;right:5px;width:14px;height:14px;border-radius:50%;border:2px solid #1a1a1a}
.member-status.online{background:#22c55e;box-shadow:0 0 8px rgba(34,197,94,0.6)}
.member-status.away{background:#fbbf24;box-shadow:0 0 8px rgba(251,191,36,0.6)}
.member-info{display:flex;flex-direction:column;align-items:center;width:100%}
.member-name{color:#e0e0e0;font-size:1.4rem;font-weight:700;margin-bottom:0.3rem;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.member-role{color:#22c55e;font-size:0.9rem;font-weight:600;margin-bottom:1rem;text-transform:uppercase;letter-spacing:1px}
.member-bio{color:#a3a3a3;font-size:0.85rem;line-height:1.4;margin-bottom:1rem;background:rgba(20,20,20,0.5);padding:1rem;border-radius:8px;border-left:3px solid #22c55e;width:100%;text-align:left}
.member-skills{display:flex;flex-wrap:wrap;gap:0.5rem;justify-content:center;width:100%}
.skill-tag{padding:0.3rem 0.7rem;background:rgba(34,197,94,0.2);color:#22c55e;border-radius:15px;font-size:0.75rem;font-weight:600;border:1px solid rgba(34,197,94,0.3);transition:all 0.3s ease}
.skill-tag:hover{background:rgba(34,197,94,0.3);transform:translateY(-1px);box-shadow:0 2px 8px rgba(34,197,94,0.2)}
.team-stats-card{background:linear-gradient(135deg,rgba(34,197,94,0.1),rgba(0,0,0,0.3));border:1px solid rgba(34,197,94,0.3);border-radius:20px;padding:2rem;text-align:center}
.stats-title{color:#22c55e;font-size:1.5rem;font-weight:600;margin-bottom:1.5rem}
.team-values{padding:0 2rem;margin-bottom:4rem}
.values-title{color:#22c55e;font-size:2.5rem;text-align:center;margin-bottom:3rem}
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}
.value-card{background:rgba(30,30,30,0.8);border:1px solid rgba(34,197,94,0.2);border-radius:15px;padding:2rem;text-align:center;transition:all 0.3s ease}
.value-card:hover{transform:translateY(-5px);border-color:rgba(34,197,94,0.4);box-shadow:0 10px 30px rgba(34,197,94,0.2)}
.value-icon{font-size:3rem;margin-bottom:1rem}
.value-title{color:#e0e0e0;font-size:1.3rem;font-weight:600;margin-bottom:1rem}
.value-desc{color:#a3a3a3;line-height:1.5}
.team-contact{background:linear-gradient(45deg,rgba(34,197,94,0.1),rgba(0,0,0,0.3));border-radius:20px;padding:3rem 2rem;text-align:center;margin:0 2rem}
.contact-title{color:#22c55e;font-size:2rem;margin-bottom:1rem}
.contact-desc{color:#d4d4d4;font-size:1.1rem;max-width:600px;margin:0 auto 2rem;line-height:1.6}
.contact-button{padding:1rem 2rem;background:linear-gradient(45deg,#22c55e,#16a34a);color:white;border:none;border-radius:25px;font-size:1.1rem;font-weight:600;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(34,197,94,0.3)}
.contact-button:hover{transform:translateY(-2px);box-shadow:0 6px 25px rgba(34,197,94,0.5)}

/* Animation for page load */
@keyframes slideInUp{from{opacity:0;transform:translateY(50px) scale(0.95)}to{opacity:1;transform:translateY(0) scale(1)}}

/* Enhanced hover effects for interactive elements */
.team-member,.value-card,.team-stats-card{will-change:transform}
.news-item,.category-card,.project-card{will-change:transform}
.particles-canvas{will-change:transform}
.splash-screen{will-change:transform,filter}

/* Apps-specific styles */
/* Apps Hero Section */
.apps-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
}

.apps-title {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.apps-subtitle {
    font-size: 1.5rem;
    color: #a3a3a3;
    margin-bottom: 2rem;
}

.apps-description {
    font-size: 1.1rem;
    color: #d4d4d4;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Platform Tabs */
.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 4rem auto 3rem;
    max-width: 600px;
    padding: 0 2rem;
}

.tab-button {
    padding: 1rem 2rem;
    background: rgba(40, 40, 40, 0.8);
    color: #a3a3a3;
    border: 1px solid rgba(60, 60, 60, 0.5);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.tab-button.active {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border-color: #22c55e;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.tab-button:hover:not(.active) {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* Apps Grid */
.apps-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.app-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.7));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.app-card:hover::before {
    left: 100%;
}

.app-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);
}

.app-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.app-info {
    flex: 1;
}

.app-name {
    color: #e0e0e0;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.app-category {
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 500;
}

.app-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

.status-soon {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.app-description {
    color: #a3a3a3;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.app-features {
    margin-bottom: 1.5rem;
}

.app-platforms {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.platform-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(60, 60, 60, 0.5);
    color: #d4d4d4;
    border-radius: 12px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    color: #a3a3a3;
    font-size: 0.9rem;
}

.app-actions {
    display: flex;
    gap: 1rem;
}

/* Featured Apps Section */
.featured-apps {
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem auto;
    max-width: 1400px;
    text-align: center;
}

.featured-title {
    color: #22c55e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-subtitle {
    color: #a3a3a3;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.featured-app {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.featured-app:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.featured-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-name {
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.featured-desc {
    color: #a3a3a3;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* App Modal */
.app-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.app-modal.active {
    opacity: 1;
    visibility: visible;
}

.app-modal .modal-content {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.9));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.app-modal.active .modal-content {
    transform: translateY(0);
}

.app-modal .modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-right: 1.5rem;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}

/* Mobile Responsive */
@media (max-width:768px){
    .topbar{padding:0 1rem;height:50px}
    .nav-menu{display:none}
    .nav-logo{font-size:1.3rem}
    .login-button{display:none}
    .main-content{padding-top:70px}
    .logo{font-size:3rem}
    .hero-title{font-size:2.5rem}
    .team-title,.journal-title,.software-title,.apps-title{font-size:2.5rem}
    .content-grid{grid-template-columns:1fr;padding:0 1rem}
    .projects-grid{grid-template-columns:1fr}
    .team-grid{grid-template-columns:1fr;padding:0 1rem}
    .values-grid{grid-template-columns:1fr}
    .stats-grid{grid-template-columns:1fr}
    .modal-content{margin:1rem;padding:2rem;max-height:90vh}
    .modal-title{font-size:1.5rem}
    .journal-layout{grid-template-columns:1fr;padding:0 1rem}
    .journal-actions{flex-direction:column}
    .hero-button{width:100%;justify-content:center}
    .category-grid{grid-template-columns:1fr;padding:0 1rem}
    .software-grid{grid-template-columns:1fr}
    .software-actions{flex-direction:column}
    .platform-tabs{flex-direction:column;gap:0.5rem}
    .apps-grid,.featured-grid{grid-template-columns:1fr;padding:0 1rem}
    .app-modal .modal-header{flex-direction:column;text-align:center}
    .modal-icon{margin-right:0;margin-bottom:1rem}
    .app-actions{flex-direction:column}
}

/* Tablet Responsive */
@media (max-width:1024px) and (min-width:769px){
    .topbar{padding:0 1.5rem}
    .nav-logo{font-size:1.4rem}
    .nav-menu{gap:1.5rem}
    .login-button{padding:0.4rem 1.2rem;font-size:0.85rem}
}

/* Large screens */
@media (min-width:1440px){
    .topbar{padding:0 3rem}
    .nav-logo{font-size:1.6rem}
    .nav-menu{gap:2.5rem}
}

/* Hidden class for tab content */
.hidden {
    display: none;
}