.login_button_mobile{
        position:absolute;
        bottom:1rem;
        right: 0;
        left: 0;
        margin: 0 5vw;
        background:#8C65D8;
        border-radius:40px;
        color:#fff;
        text-decoration:none;
        padding:15px;
        text-align:center;
        font-weight:600;
        font-size:1rem;
        transition:all 0.3s ease;
    }
    .welcome-container{
        margin: 0 5vw;
    }
    .welcome_wrapper{
        display:flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .best_parties_btn{
        background: #fff;
        color: #1a1a1a;
        padding: 1rem 2rem;
        border-radius: 10rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .live-pulse-circle {
        display: inline-block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #19e239;
        box-shadow: 0 0 0 rgba(25,226,57,0.6);
        position: relative;
        animation: pulse-green 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
        margin-right: 0.2rem;
    }

    @keyframes pulse-green {
        0% {
            box-shadow: 0 0 0 0 rgba(25,226,57,0.6);
        }
        70% {
            box-shadow: 0 0 0 8px rgba(25,226,57,0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(25,226,57,0.6);
        }
    }
    /* Group Options Styles */
    .group-options-container {
        background: #fff;
        border-radius: 1.5rem;
        padding: 2.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .group-options-header {
        margin-bottom: 2rem;
    }

    .group-options-header h2 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #1a1a1a;
    }

    .group-options-header p {
        color: #666;
        font-size: 1rem;
    }

    .options-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .option-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 1rem;
        padding: 2rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        position: relative;
        overflow: hidden;
    }

    .option-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .option-card:hover::before {
        opacity: 1;
    }

    .option-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
    }

    .option-card:active {
        transform: translateY(-2px);
    }

    .option-icon {
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        position: relative;
        z-index: 1;
    }

    .option-content {
        position: relative;
        z-index: 1;
    }

    .option-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .option-content p {
        font-size: 0.95rem;
        opacity: 0.9;
        margin: 0;
    }

    .option-card.create-group {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .option-card.join-group {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .option-card.create-group:hover {
        box-shadow: 0 12px 24px rgba(245, 87, 108, 0.4);
    }

    .option-card.join-group:hover {
        box-shadow: 0 12px 24px rgba(79, 172, 254, 0.4);
    }

    @media (min-width: 768px) {
        .options-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .group-options-container {
            padding: 2rem 1.5rem;
        }

        .group-options-header h2 {
            font-size: 1.5rem;
        }

        .option-card {
            padding: 1.5rem;
        }
    }

    /* Welcome Section Styles */
    .welcome-section {
        background: #271A4E;
        min-height: 60vh;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .welcome-header {
        margin-top: 3rem;
        margin-bottom: 3rem;
        color: #fff;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .welcome-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
    }

    .welcome-header p {
        font-size: 1.25rem;
        opacity: 0.95;
        color: #fff;
    }

    .welcome-actions {
        display: grid;
        gap: 2rem;
    }

    .welcome-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 46px;
        padding: 2.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        overflow: hidden;
    }

    .welcome-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .welcome-card:hover::before {
        opacity: 1;
    }

    .welcome-card:hover {
        transform: translateY(-8px);
    }

    .welcome-card-primary {
        background: #BB96FF;
    }

    .welcome-card-secondary {
        background: #8C65D8;
    }

    .welcome-card-icon {
        font-size: 4rem;
        position: relative;
        z-index: 1;
    }

    .welcome-card-content {
        position: relative;
        z-index: 1;
        color: #1a1a1a;
    }

    .welcome-card-content h3 {
        font-size: 1.75rem;
        font-weight: 600;
        margin: 0;
        color: #fff;
    }

    .welcome-card-content p {
        font-size: 1.1rem;
        color: #ffffff;
        margin: 0;
        line-height: 1.6;
    }

    @media (min-width: 768px) {
        .welcome-actions {
            grid-template-columns: 1fr 1fr;
        }

        .welcome-header h1 {
            font-size: 3.5rem;
        }

        .welcome-header p {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 600px) {
        .welcome-section {
            min-height: 50vh;
        }

        .welcome-header h1 {
            font-size: 2rem;
        }

        .welcome-header p {
            font-size: 1.1rem;
        }

        .welcome-card-icon {
            font-size: 3rem;
        }

        .welcome-card-content h3 {
            font-size: 1.5rem;
        }

        .welcome-card-content p {
            font-size: 1rem;
        }
    }

    /* My Groups Section Styles */
    .my-groups-container {
        background: white;
        border-radius: 1.5rem;
        padding: 2.5rem;
        margin-top: 2rem;
    }

    .my-groups-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .my-groups-header h2 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #1a1a1a;
    }

    .my-groups-header p {
        color: #666;
        font-size: 1rem;
    }

    .groups-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .group-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 1rem;
        padding: 1.5rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        overflow: hidden;
    }

    .group-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .group-card:hover::before {
        opacity: 1;
    }

    .group-card:hover {
        transform: translateY(-4px);
    }

    /* Owned groups styling - different color */
    .group-card.owned {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .group-card.owned:hover {
        box-shadow: 0 8px 25px rgba(245, 87, 108, 0.5);
    }

    .group-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        z-index: 1;
    }

    .group-card-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0;
        flex: 1;
    }

    .group-owner-badge {
        background: rgba(255, 255, 255, 0.3);
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        white-space: nowrap;
        margin-left: 0.5rem;
    }

    .group-card-info {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .group-card-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .group-card-meta svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .no-groups-message {
        text-align: center;
        padding: 3rem 1rem;
        color: #666;
    }

    .no-groups-message p {
        font-size: 1.1rem;
        margin: 0.5rem 0;
    }

    @media (max-width: 768px) {
        .groups-list {
            grid-template-columns: 1fr;
        }

        .my-groups-container {
            padding: 2rem 1.5rem;
        }
    }