/* ===============================================
   EXACT CARD RECREATION FROM SCREENSHOT
   =============================================== */

.simple-project-card {
    background: linear-gradient(180deg, 
        rgba(139, 195, 74, 0.9) 0%,
        rgba(205, 220, 57, 0.2) 40%,
        rgba(255, 255, 255, 0.95) 100%);
    border-radius: 30px;
    padding: 25px 35px 30px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-height: 520px;
    min-width: 360px;
    max-width: none;
    width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ADD HORIZONTAL MARGIN TO CARDS */
#projects .col-lg-4,
#projects .col-md-6 {
    margin-bottom: 3rem;
    padding: 0 3.5rem !important;
}

/* Increase spacing in the row */
#projects .row {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
}

/* Card Column Spacing */
.col-lg-4.mb-4 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}

.simple-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(139, 195, 74, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.simple-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Status Badge - Top Right - SMALLER */
.badge-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.badge-active {
    background: #4CAF50;
    color: white;
}

.badge-coming-soon {
    background: #FF9800;
    color: white;
}

.badge-status i {
    font-size: 0.6rem;
}

/* Project Icon - SMALLER */
.project-card-icon {
    width: 90px;
    height: 90px;
    margin: 20px auto 18px;
    border-radius: 22px;
    overflow: hidden;
    background: white;
    padding: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.project-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* Title - SMALLER */
.project-card-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.project-card-subtitle {
    color: #95a5a6;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 6px 0 12px;
    position: relative;
    z-index: 2;
}

.title-divider {
    width: 45px;
    height: 3px;
    background: #4CAF50;
    margin: 0 auto 18px;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

/* Description - Hidden in this design */
.project-card-description {
    display: none;
}

/* Tags - SMALLER SPACING */
.project-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.project-tags .tag {
    background: rgba(139, 195, 74, 0.15);
    color: #558B2F;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(139, 195, 74, 0.3);
}

/* Stats - White Background Box - COMPACT */
.project-stats {
    background: white;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 18px auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    width: fit-content;
    min-width: 150px;
    position: relative;
    z-index: 2;
}

.project-stats .stat {
    padding: 15px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.project-stats .stat:last-child {
    border-right: none;
}

.project-stats .stat i {
    color: #4CAF50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 6px;
}

.project-stats .stat-value {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.project-stats .stat-label {
    color: #95a5a6;
    font-size: 0.7rem;
    font-weight: 600;
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Icons - Smaller, More Compact */
.project-social {
    display: flex;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.social-icon.youtube {
    background: #FF0000;
    color: white;
}

.social-icon.discord {
    background: #5865F2;
    color: white;
}

.social-icon.patreon {
    background: #FF424D;
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Go to Project Button - COMPACT SIZE MATCHING SCREENSHOT */
.btn-go-project {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-go-project i {
    font-size: 0.85rem;
}

.btn-go-project:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
    color: white;
    text-decoration: none;
}

.btn-go-project.btn-disabled {
    background: #bdbdbd;
    color: white;
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-go-project.btn-disabled:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #bdbdbd;
}

/* Bottom Row - Social + Button - PROPER SPACING */
.card-bottom-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 2;
    gap: 15px;
    padding: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-project-card {
        min-height: 550px;
        padding: 25px;
    }
    
    .project-card-icon {
        width: 100px;
        height: 100px;
    }
    
    .project-card-title {
        font-size: 1.5rem;
    }
    
    .card-bottom-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-social {
        margin-bottom: 0;
    }
}

/* ============================================
   TO BE DECIDED CARDS - BLURRED STYLE
   ============================================ */

.tbd-card {
    position: relative;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(
        135deg,
        rgba(245, 245, 245, 1) 0%,
        rgba(250, 250, 250, 1) 100%
    );
}

/* Apply strong blur to content, not the overlay */
.tbd-card .project-card-icon,
.tbd-card .project-card-title,
.tbd-card .project-card-description,
.tbd-card .project-tags,
.tbd-card .project-stats,
.tbd-card .card-bottom-row,
.tbd-card .badge-status {
    filter: blur(10px) brightness(0.85);
    opacity: 0.6;
    visibility: visible;
}

.tbd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(240, 240, 240, 0.85) 0%,
        rgba(250, 250, 250, 0.75) 100%
    );
    backdrop-filter: blur(2px);
    z-index: 10;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: tbdPulse 3s ease-in-out infinite;
}

@keyframes tbdPulse {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 0.75;
    }
}

.tbd-tag {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 248, 248, 1) 100%
    );
    border: 4px solid #9E9E9E;
    border-radius: 25px;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    animation: tbdFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
    filter: none !important;
    opacity: 1 !important;
    z-index: 11;
}

@keyframes tbdFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.tbd-tag i {
    font-size: 3.5rem;
    color: #616161;
    animation: tbdIconSpin 8s linear infinite;
    filter: none !important;
}

@keyframes tbdIconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tbd-tag span {
    font-size: 1.5rem;
    font-weight: 900;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    filter: none !important;
}

/* TBD Card Hover Effect */
.tbd-card:hover .tbd-overlay {
    background: linear-gradient(
        135deg,
        rgba(240, 240, 240, 0.75) 0%,
        rgba(250, 250, 250, 0.65) 100%
    );
}

.tbd-card:hover .tbd-tag {
    transform: translateY(-20px) scale(1.15);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 20px 50px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 1);
    border-color: #757575;
}

/* Responsive TBD Cards */
@media (max-width: 768px) {
    .tbd-tag {
        padding: 20px 35px;
    }
    
    .tbd-tag i {
        font-size: 3rem;
    }
    
    .tbd-tag span {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}
