/*
 * WP Crypto Stake Frontend Interface Styles
 * Table of Contents:
 * 1. Animation Definitions
 * 2. Base Container Styles
 * 3. Header Section
 * 4. What is Staking Section
 * 5. Content Area
 * 6. Period Options
 * 7. Calculator Section
 * 8. Stakes Cards
 * 9. FAQ Section
 * 10. Utility Classes
 * 11. Mobile Responsive
 */

/* ==========================================================================
   1. Animation Definitions
   ========================================================================== */

@keyframes pulse {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(1); 
        opacity: 1; 
    }
}

@keyframes shine {
    0% { 
        background-position: -200% center; 
    }
    100% { 
        background-position: 200% center; 
    }
}

@keyframes floating {
    0% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-5px); 
    }
    100% { 
        transform: translateY(0px); 
    }
}

/* ==========================================================================
   2. Base Container Styles
   ========================================================================== */

.wpcrypto-stake-container {
    background: linear-gradient(135deg, #1a1f2c, #252c3b);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.wpcrypto-stake-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

/* ==========================================================================
   3. Header Section
   ========================================================================== */

.wpcrypto-stake-header {
    background: linear-gradient(90deg, #2c3e50, #4a6491);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.wpcrypto-stake-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, 
                                        rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, 
                                        transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: -1;
}

.wpcrypto-stake-coin-info {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wpcrypto-stake-coin-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    height: 60px;
    width: 60px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: pulse 3s infinite;
}

.wpcrypto-stake-coin-name h2 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.wpcrypto-stake-coin-name h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, transparent);
}

.wpcrypto-stake-slogan {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* User Balance Section */
.wpcrypto-stake-user-balance {
    display: flex;
    gap: 15px;
}

.wpcrypto-balance-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.wpcrypto-balance-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wpcrypto-balance-box span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.wpcrypto-available-balance,
.wpcrypto-stake-locked-balance {
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wpcrypto-available-balance:hover, 
.wpcrypto-stake-locked-balance:hover {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 3px;
    padding: 2px 4px;
}

/* ==========================================================================
   4. What is Staking Section
   ========================================================================== */

.wpcrypto-stake-what-is {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.wpcrypto-stake-what-is::before {
    content: '₿';
    position: absolute;
    right: -20px;
    top: 0;
    font-size: 200px;
    color: rgba(243, 156, 18, 0.03);
    z-index: 0;
}

.wpcrypto-stake-what-is-content {
    position: relative;
    z-index: 1;
}

.wpcrypto-stake-what-is h3 {
    color: #fff;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.wpcrypto-stake-what-is p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

/* Benefits Section */
.wpcrypto-stake-benefits {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.wpcrypto-stake-benefit {
    flex: 1;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.wpcrypto-stake-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(243, 156, 18, 0.1);
}

.benefit-icon {
    font-size: 24px;
    margin-right: 15px;
    animation: floating 3s infinite ease-in-out;
}

.benefit-text h4 {
    margin: 0 0 5px;
    color: #fff;
}

.benefit-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
  5. Content Area (continued)
  ========================================================================== */

.wpcrypto-stake-content {
   padding: 30px;
}

.wpcrypto-stake-info {
   display: flex;
   gap: 30px;
   margin-bottom: 30px;
}

.wpcrypto-stake-periods,
.wpcrypto-stake-calculator {
   flex: 1;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 10px;
   padding: 20px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.wpcrypto-stake-periods:hover,
.wpcrypto-stake-calculator:hover {
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wpcrypto-stake-periods h3,
.wpcrypto-stake-calculator h3,
.wpcrypto-all-stakes h3,
.wpcrypto-stake-faq h3 {
   color: #fff;
   font-size: 18px;
   margin-top: 0;
   margin-bottom: 20px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   padding-bottom: 10px;
   position: relative;
}

.wpcrypto-stake-periods h3::after,
.wpcrypto-stake-calculator h3::after,
.wpcrypto-all-stakes h3::after,
.wpcrypto-stake-faq h3::after {
   content: '';
   position: absolute;
   bottom: -1px;
   left: 0;
   width: 100px;
   height: 2px;
   background: linear-gradient(90deg, #f39c12, transparent);
}

/* ==========================================================================
  6. Period Options
  ========================================================================== */

.wpcrypto-stake-period-options {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 15px;
}

.wpcrypto-stake-period-option {
   text-align: center;
   cursor: pointer;
   transition: all 0.3s ease;
   padding: 15px;
   border-radius: 10px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid transparent;
   position: relative;
   overflow: hidden;
}

.wpcrypto-stake-period-option::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(45deg, rgba(243, 156, 18, 0.05), rgba(233, 30, 99, 0.05), rgba(52, 152, 219, 0.05));
   background-size: 200% 200%;
   animation: shine 3s linear infinite;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.wpcrypto-stake-period-option:hover::before,
.wpcrypto-stake-period-option.active::before {
   opacity: 1;
}

.wpcrypto-stake-period-option:hover,
.wpcrypto-stake-period-option.active {
   background: rgba(243, 156, 18, 0.1);
   border-color: rgba(243, 156, 18, 0.5);
   transform: translateY(-5px);
   box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

.period-circle {
   background: linear-gradient(135deg, #3498db, #2980b9);
   border-radius: 50%;
   width: 70px;
   height: 70px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 15px;
   font-weight: bold;
   box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
   transition: all 0.3s ease;
   position: relative;
   z-index: 1;
}

.period-circle::after {
   content: '';
   position: absolute;
   top: -3px;
   left: -3px;
   right: -3px;
   bottom: -3px;
   border-radius: 50%;
   background: linear-gradient(45deg, #3498db, #2980b9, #3498db);
   z-index: -1;
   opacity: 0.5;
}

.wpcrypto-stake-period-option:hover .period-circle,
.wpcrypto-stake-period-option.active .period-circle {
   background: linear-gradient(135deg, #f39c12, #e67e22);
   box-shadow: 0 5px 15px rgba(230, 126, 34, 0.5);
}

.wpcrypto-stake-period-option:hover .period-circle::after,
.wpcrypto-stake-period-option.active .period-circle::after {
   background: linear-gradient(45deg, #f39c12, #e67e22, #f39c12);
}

.period-reward {
   font-size: 20px;
   font-weight: bold;
   color: #3498db;
   transition: all 0.3s ease;
}

.wpcrypto-stake-period-option:hover .period-reward,
.wpcrypto-stake-period-option.active .period-reward {
   color: #f39c12;
}

/* Penalty Information */
.wpcrypto-stake-penalty-info {
   margin-top: 25px;
   background: rgba(231, 76, 60, 0.1);
   border-radius: 10px;
   padding: 15px;
   display: flex;
   align-items: flex-start;
   border-left: 3px solid rgba(231, 76, 60, 0.5);
}

.penalty-icon {
   margin-right: 15px;
   font-size: 20px;
   animation: pulse 2s infinite;
}

.penalty-text h4 {
   margin: 0 0 5px;
   color: #e74c3c;
   font-size: 16px;
}

.penalty-text p {
   margin: 0;
   font-size: 14px;
   color: rgba(255, 255, 255, 0.7);
   line-height: 1.5;
}

/* ==========================================================================
  7. Calculator Section
  ========================================================================== */

.wpcrypto-stake-input-group {
   margin-bottom: 20px;
   position: relative;
}

.wpcrypto-stake-input-group label {
   display: block;
   margin-bottom: 8px;
   color: rgba(255, 255, 255, 0.7);
   font-size: 14px;
}

.wpcrypto-stake-input-group input,
.wpcrypto-stake-input-group select {
   width: 100%;
   padding: 14px 15px;
   border-radius: 8px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   background: rgba(255, 255, 255, 0.05);
   color: #fff;
   font-size: 16px;
   transition: all 0.3s ease;
}

.wpcrypto-stake-input-group input:focus,
.wpcrypto-stake-input-group select:focus {
   outline: none;
   border-color: #3498db;
   box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}

.wpcrypto-stake-symbol {
   position: absolute;
   right: 15px;
   top: 42px;
   color: rgba(255, 255, 255, 0.5);
}

.wpcrypto-input-help {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.6);
   margin-top: 5px;
}

#stake-amount {
   step: 0.0001;
}

/* Calculation Display */
.wpcrypto-stake-calculation {
   background: rgba(0, 0, 0, 0.2);
   border-radius: 10px;
   padding: 15px;
   margin: 20px 0;
   border-left: 3px solid #3498db;
}

.wpcrypto-stake-row {
   display: flex;
   justify-content: space-between;
   margin-bottom: 12px;
   padding-bottom: 12px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wpcrypto-stake-row:last-child {
   margin-bottom: 0;
   padding-bottom: 0;
   border-bottom: none;
}

.wpcrypto-stake-row span {
   color: rgba(255, 255, 255, 0.7);
}

.wpcrypto-stake-row strong {
   color: #fff;
}

/* Stake Button */
.wpcrypto-stake-button {
   display: block;
   width: 100%;
   padding: 15px;
   background: linear-gradient(135deg, #f39c12, #e67e22);
   color: #fff;
   border: none;
   border-radius: 8px;
   font-size: 16px;
   font-weight: bold;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 1px;
   box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
   position: relative;
   overflow: hidden;
}

.wpcrypto-stake-button::after {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: linear-gradient(
       transparent,
       rgba(255, 255, 255, 0.1),
       transparent
   );
   transform: rotate(30deg);
   transition: transform 0.5s;
}

.wpcrypto-stake-button:hover {
   background: linear-gradient(135deg, #e67e22, #d35400);
   transform: translateY(-2px);
   box-shadow: 0 7px 20px rgba(230, 126, 34, 0.4);
}

.wpcrypto-stake-button:hover::after {
   transform: rotate(30deg) translateX(100%);
}

.wpcrypto-stake-button:active {
   transform: translateY(1px);
}

/* Messages */
.wpcrypto-stake-message {
   margin-top: 15px;
   padding: 10px;
   border-radius: 5px;
   text-align: center;
   display: none;
}

.wpcrypto-stake-message.success {
   background: rgba(46, 204, 113, 0.2);
   color: #2ecc71;
   border: 1px solid rgba(46, 204, 113, 0.3);
   display: block;
   animation: pulse 1s;
}

.wpcrypto-stake-message.error {
   background: rgba(231, 76, 60, 0.2);
   color: #e74c3c;
   border: 1px solid rgba(231, 76, 60, 0.3);
   display: block;
   animation: pulse 1s;
}

/* ==========================================================================
  8. Stakes Cards
  ========================================================================== */

.wpcrypto-all-stakes {
   background: rgba(255, 255, 255, 0.05);
   border-radius: 10px;
   padding: 20px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   margin-bottom: 30px;
}

.wpcrypto-stakes-list {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
   gap: 20px;
}

.wpcrypto-stake-item {
   background: rgba(255, 255, 255, 0.08);
   border-radius: 12px;
   overflow: hidden;
   transition: all 0.3s ease;
   position: relative;
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.wpcrypto-stake-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   border-color: rgba(243, 156, 18, 0.5);
}

/* Status Indicators */
.wpcrypto-stake-item.active::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.wpcrypto-stake-item.completed::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #3498db, #2980b9);
}

.wpcrypto-stake-item.unstaked::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #e74c3c, #c0392b);
}

/* Stake Item Header */
.wpcrypto-stake-item-header {
   padding: 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wpcrypto-crypto-info {
   display: flex;
   align-items: center;
}

.wpcrypto-crypto-icon {
   width: 40px;
   height: 40px;
   background: linear-gradient(135deg, #f39c12, #e67e22);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   font-weight: bold;
   margin-right: 12px;
   box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

.wpcrypto-crypto-details h4 {
   margin: 0 0 4px 0;
   color: #fff;
   font-size: 16px;
}

.wpcrypto-crypto-name {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.6);
   margin: 0;
}

.wpcrypto-stake-amount {
   text-align: right;
}

.wpcrypto-stake-amount-value {
   font-size: 18px;
   font-weight: bold;
   color: #fff;
   margin: 0;
}

.wpcrypto-stake-amount-label {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.6);
   margin: 4px 0 0 0;
}

/* Stake Item Body */
.wpcrypto-stake-item-body {
   padding: 20px;
}

.wpcrypto-stake-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 15px;
   margin-bottom: 20px;
}

.wpcrypto-stat-box {
   background: rgba(0, 0, 0, 0.2);
   border-radius: 8px;
   padding: 12px;
   text-align: center;
}

.wpcrypto-stat-label {
   font-size: 11px;
   color: rgba(255, 255, 255, 0.6);
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 6px;
}

.wpcrypto-stat-value {
   font-size: 14px;
   font-weight: bold;
   color: #fff;
}

.wpcrypto-stat-value.reward {
   color: #2ecc71;
   cursor: pointer;
   transition: all 0.2s ease;
}

.wpcrypto-stat-value.reward:hover {
   background-color: rgba(0, 123, 255, 0.1);
   border-radius: 3px;
   padding: 2px 4px;
}

/* Progress Section */
.wpcrypto-progress-section {
   margin-bottom: 20px;
}

.wpcrypto-progress-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 8px;
}

.wpcrypto-progress-label {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.7);
}

.wpcrypto-progress-percentage {
   font-size: 12px;
   color: #2ecc71;
   font-weight: bold;
}

.wpcrypto-progress-bar {
   height: 8px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 4px;
   overflow: hidden;
}

.wpcrypto-progress-fill {
   height: 100%;
   background: linear-gradient(90deg, #3498db, #2ecc71);
   width: 0;
   transition: width 1s ease;
   position: relative;
}

.wpcrypto-progress-fill::after {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(
       90deg,
       transparent,
       rgba(255, 255, 255, 0.3),
       transparent
   );
   animation: shine 2s infinite;
}

/* Stake Actions */
.wpcrypto-stake-actions {
   display: flex;
   gap: 10px;
}

.wpcrypto-status-badge {
   padding: 6px 12px;
   border-radius: 20px;
   font-size: 11px;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   flex: 1;
   text-align: center;
}

.wpcrypto-status-badge.active {
   background: rgba(46, 204, 113, 0.2);
   color: #2ecc71;
   border: 1px solid rgba(46, 204, 113, 0.3);
}

.wpcrypto-status-badge.completed {
   background: rgba(52, 152, 219, 0.2);
   color: #3498db;
   border: 1px solid rgba(52, 152, 219, 0.3);
}

.wpcrypto-status-badge.unstaked {
   background: rgba(231, 76, 60, 0.2);
   color: #e74c3c;
   border: 1px solid rgba(231, 76, 60, 0.3);
}

.wpcrypto-unstake-btn {
   background: linear-gradient(135deg, #e74c3c, #c0392b);
   color: white;
   border: none;
   border-radius: 6px;
   padding: 8px 16px;
   font-size: 12px;
   font-weight: bold;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   flex: 1;
}

.wpcrypto-unstake-btn:hover {
   background: linear-gradient(135deg, #c0392b, #a63326);
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.wpcrypto-no-stakes {
   text-align: center;
   padding: 60px 20px;
   color: rgba(255, 255, 255, 0.5);
   font-style: italic;
   font-size: 16px;
}

/* ==========================================================================
  9. FAQ Section
  ========================================================================== */

.wpcrypto-stake-faq {
   background: rgba(255, 255, 255, 0.05);
   border-radius: 10px;
   padding: 20px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wpcrypto-stake-faq-item {
   margin-bottom: 15px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
   padding-bottom: 15px;
}

.wpcrypto-stake-faq-item:last-child {
   margin-bottom: 0;
   border-bottom: none;
   padding-bottom: 0;
}

.wpcrypto-faq-question {
   font-weight: bold;
   font-size: 16px;
   color: #3498db;
   padding: 10px 15px;
   background: rgba(52, 152, 219, 0.1);
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.3s ease;
   position: relative;
}

.wpcrypto-faq-question::after {
   content: '+';
   position: absolute;
   right: 15px;
   top: 50%;
   transform: translateY(-50%);
   transition: all 0.3s ease;
}

.wpcrypto-faq-question.active::after {
   transform: translateY(-50%) rotate(45deg);
}

.wpcrypto-faq-question:hover {
   background: rgba(52, 152, 219, 0.2);
}

.wpcrypto-faq-answer {
   padding: 0 15px;
   max-height: 0;
   overflow: hidden;
   transition: all 0.3s ease;
}

.wpcrypto-faq-answer.show {
   padding: 15px;
   max-height: 500px;
}

.wpcrypto-faq-answer p {
   margin: 0;
   color: rgba(255, 255, 255, 0.7);
   line-height: 1.5;
}

/* ==========================================================================
  10. Utility Classes
  ========================================================================== */

.wpcrypto-stake-error {
   background: rgba(231, 76, 60, 0.2);
   color: #e74c3c;
   border: 1px solid rgba(231, 76, 60, 0.3);
   padding: 15px;
   border-radius: 8px;
   text-align: center;
   margin: 20px 0;
   animation: pulse 1s;
}

/* ==========================================================================
  11. Mobile Responsive
  ========================================================================== */

@media (max-width: 991px) {
   .wpcrypto-stake-period-options {
       grid-template-columns: repeat(2, 1fr);
   }
   
   .wpcrypto-stake-benefits {
       flex-direction: column;
   }
   
   .wpcrypto-stake-benefit {
       width: 100%;
   }
   
   .wpcrypto-stakes-list {
       grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   }
}

@media (max-width: 768px) {
   .wpcrypto-stake-header {
       flex-direction: column;
       text-align: center;
       gap: 20px;
   }
   
   .wpcrypto-stake-coin-info {
       margin-bottom: 10px;
       flex-direction: column;
   }
   
   .wpcrypto-stake-coin-icon {
       margin-right: 0;
       margin-bottom: 15px;
   }
   
   .wpcrypto-stake-user-balance {
       width: 100%;
       justify-content: center;
   }
   
   .wpcrypto-stake-info {
       flex-direction: column;
   }
   
   .wpcrypto-stakes-list {
       grid-template-columns: 1fr;
   }
   
   .wpcrypto-stake-stats {
       grid-template-columns: 1fr;
       gap: 10px;
   }
   
   .wpcrypto-stake-actions {
       flex-direction: column;
   }
}

@media (max-width: 480px) {
   .wpcrypto-stake-period-options {
       grid-template-columns: 1fr;
   }
   
   .wpcrypto-stake-what-is {
       padding: 20px;
   }
   
   .wpcrypto-stake-content {
       padding: 20px;
   }
   
   .wpcrypto-stake-user-balance {
       flex-direction: column;
   }
   
   .wpcrypto-stake-item-header {
       flex-direction: column;
       gap: 15px;
       text-align: center;
   }
   
   .wpcrypto-crypto-info {
       justify-content: center;
   }
}

/* End of Frontend Styles */