.ads-parent {

    flex-basis: 100% !important;
    width: 100% !important;
    margin-bottom: 30px;
}


.subtitle {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.ads-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

.ad-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    color: #888;
    font-size: 11px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Leaderboard Ad - 468x60 */
.leaderboard-ad {
    width: 468px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #150e79 100%);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.leaderboard-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.leaderboard-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.leaderboard-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.leaderboard-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.leaderboard-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.leaderboard-text h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
    animation: slideInLeft 0.6s ease-out;
}

.leaderboard-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 400;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.leaderboard-cta {
    background: #fff;
    color: #667eea;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    border: none;
    cursor: pointer;
    animation: slideInRight 0.8s ease-out;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.leaderboard-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Small Square Ad - 200x200 */
.square-ad {
    width: 300px;
    height: 250px;
    background: linear-gradient(135deg, #000000 0%, #150e79 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(240, 147, 251, 0.3);
    transition: transform 0.3s ease;
}

.square-ad:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 147, 251, 0.4);
}

.square-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.square-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    animation: rotateIn 1s ease-out;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.square-content h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.square-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.square-cta {
    background: #fff;
    color: #000000;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 11px;
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.square-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        clip-path: polygon(0 50%, 10% 45%, 20% 50%, 30% 45%, 40% 50%, 50% 45%, 60% 50%, 70% 45%, 80% 50%, 90% 45%, 100% 50%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0 45%, 10% 50%, 20% 45%, 30% 50%, 40% 45%, 50% 50%, 60% 45%, 70% 50%, 80% 45%, 90% 50%, 100% 45%, 100% 100%, 0% 100%);
    }
}

/* Vertical Banner - 120x240 */
.vertical-ad {
    width: 120px;
    height: 240px;
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.3);
    transition: transform 0.3s ease;
}

.vertical-ad:hover {
    transform: translateX(3px);
    box-shadow: 0 12px 40px rgba(79, 172, 254, 0.4);
}

.vertical-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    text-align: center;
}

.vertical-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.vertical-content h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.vertical-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.vertical-cta {
    background: #fff;
    color: #4facfe;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.vertical-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

/* Half Banner - 234x60 */
.half-banner-ad {
    width: 234px;
    height: 60px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(250, 112, 154, 0.3);
    transition: transform 0.3s ease;
}

.half-banner-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(250, 112, 154, 0.4);
}

.half-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.half-banner-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.half-banner-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.half-banner-text h2 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
    animation: slideInLeft 0.6s ease-out;
}

.half-banner-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 9px;
    font-weight: 400;
    animation: slideInLeft 0.8s ease-out;
}

.half-banner-cta {
    background: #fff;
    color: #fa709a;
    padding: 7px 15px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 10px;
    border: none;
    cursor: pointer;
    animation: slideInRight 0.8s ease-out;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.half-banner-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.dummy-label {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    opacity: 0.8;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 40%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.6;
    }
}

.circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: expand 3s ease-out infinite;
}

.circle:nth-child(1) {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

@keyframes expand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}